mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
added template building
This commit is contained in:
parent
8205579362
commit
55216583f3
1 changed files with 6 additions and 3 deletions
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
|
@ -1,8 +1,5 @@
|
|||
pipeline {
|
||||
agent any
|
||||
environment {
|
||||
BAGET = credentials('3db850d0-e6b5-43d5-b607-d180f4eab676')
|
||||
}
|
||||
stages {
|
||||
stage('Build Projects') {
|
||||
steps {
|
||||
|
@ -10,6 +7,9 @@ pipeline {
|
|||
dotnet build $i
|
||||
done'''
|
||||
sh 'dotnet build **/Demos.csproj'
|
||||
sh '''for i in **/TemplateNamespace.csproj; do
|
||||
dotnet build $i
|
||||
done'''
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -31,4 +31,7 @@ done'''
|
|||
}
|
||||
|
||||
}
|
||||
environment {
|
||||
BAGET = credentials('3db850d0-e6b5-43d5-b607-d180f4eab676')
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue