1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-27 06:51:43 +02:00

try to fix this to build all of them seperately

This commit is contained in:
Ellpeck 2020-02-17 17:29:42 +01:00
parent 1147469d2f
commit 90cf57fb4f

4
Jenkinsfile vendored
View file

@ -3,7 +3,9 @@ pipeline {
stages { stages {
stage('Build Projects') { stage('Build Projects') {
steps { 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.csproj'
sh 'dotnet build **/Demos.DesktopGL.csproj' sh 'dotnet build **/Demos.DesktopGL.csproj'
} }