1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-02 13:23:37 +02:00
MLEM/Jenkinsfile
2020-02-17 17:24:13 +01:00

13 lines
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'
}
}
}
}