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