1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-02 13:23:37 +02:00
MLEM/Jenkinsfile
2020-02-17 18:39:28 +01:00

14 lines
211 B
Groovy

pipeline {
agent any
stages {
stage('Build Projects') {
steps {
sh '''for i in **/MLEM*.csproj; do
dotnet build $i
done'''
sh 'dotnet build **/Demos.csproj'
}
}
}
}