1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-09 00:01:36 +02:00
MLEM/Jenkinsfile

14 lines
211 B
Plaintext
Raw Normal View History

2020-02-17 17:24:13 +01:00
pipeline {
agent any
stages {
stage('Build Projects') {
steps {
sh '''for i in **/MLEM*.csproj; do
dotnet build $i
done'''
2020-02-17 17:24:13 +01:00
sh 'dotnet build **/Demos.csproj'
}
}
}
}