mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
ab9e9f2a1b
1 changed files with 15 additions and 0 deletions
15
Jenkinsfile
vendored
Normal file
15
Jenkinsfile
vendored
Normal 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'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue