mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-13 01:39:09 +01:00
try to fix this to build all of them seperately
This commit is contained in:
parent
1147469d2f
commit
90cf57fb4f
1 changed files with 3 additions and 1 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -3,7 +3,9 @@ pipeline {
|
|||
stages {
|
||||
stage('Build Projects') {
|
||||
steps {
|
||||
sh 'dotnet build **/MLEM*.csproj'
|
||||
sh '''for i in **/MLEM*.csproj; do
|
||||
dotnet build $i
|
||||
done'''
|
||||
sh 'dotnet build **/Demos.csproj'
|
||||
sh 'dotnet build **/Demos.DesktopGL.csproj'
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue