1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-26 14:41:41 +02:00

Merge remote-tracking branch 'origin/master'

This commit is contained in:
Ellpeck 2020-02-17 17:43:56 +01:00
commit ab9e9f2a1b

15
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,15 @@
pipeline {
agent any
stages {
stage('Build Projects') {
steps {
sh '''for i in **/MLEM*.csproj; do
dotnet build $i
done'''
sh 'dotnet build **/Demos.csproj'
sh 'dotnet build **/Demos.DesktopGL.csproj'
}
}
}
}