1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-01 21:03:38 +02:00

added template building

This commit is contained in:
Ellpeck 2020-02-26 10:26:22 +01:00
parent 8205579362
commit 55216583f3

9
Jenkinsfile vendored
View file

@ -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')
}
}