1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-11 08:50:24 +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 {
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'
}