mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-16 10:53:11 +01:00
15 lines
No EOL
263 B
Groovy
15 lines
No EOL
263 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'
|
|
sh 'dotnet build **/Demos.DesktopGL.csproj'
|
|
}
|
|
}
|
|
|
|
}
|
|
} |