mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 12:58:33 +01:00
13 lines
No EOL
234 B
Groovy
13 lines
No EOL
234 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build Projects') {
|
|
steps {
|
|
sh 'dotnet build **/MLEM*.csproj'
|
|
sh 'dotnet build **/Demos.csproj'
|
|
sh 'dotnet build **/Demos.DesktopGL.csproj'
|
|
}
|
|
}
|
|
|
|
}
|
|
} |