mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-12-26 02:09:24 +01:00
try to fix this to build all of them seperately
This commit is contained in:
parent
1147469d2f
commit
90cf57fb4f
1 changed files with 3 additions and 1 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -3,7 +3,9 @@ pipeline {
|
||||||
stages {
|
stages {
|
||||||
stage('Build Projects') {
|
stage('Build Projects') {
|
||||||
steps {
|
steps {
|
||||||
sh 'dotnet build **/MLEM*.csproj'
|
sh '''for i in **/MLEM*.csproj; do
|
||||||
|
dotnet build $i
|
||||||
|
done'''
|
||||||
sh 'dotnet build **/Demos.csproj'
|
sh 'dotnet build **/Demos.csproj'
|
||||||
sh 'dotnet build **/Demos.DesktopGL.csproj'
|
sh 'dotnet build **/Demos.DesktopGL.csproj'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue