1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-18 07:08:44 +02:00
MLEM/Jenkinsfile

42 lines
992 B
Plaintext
Raw Normal View History

2020-02-17 17:24:13 +01:00
pipeline {
agent any
stages {
stage('Submodules') {
steps {
sh 'git submodule update --init --recursive --force'
}
}
2020-05-21 22:50:38 +02:00
stage('Cake Build') {
2020-02-17 17:24:13 +01:00
steps {
2020-12-30 19:04:02 +01:00
sh 'dotnet tool restore'
2021-04-02 17:12:27 +02:00
// we use xvfb to allow for graphics-dependent tests
2021-10-24 00:30:50 +02:00
sh 'xvfb-run -a dotnet cake --target Publish --branch ' + env.BRANCH_NAME
2021-03-18 17:28:08 +01:00
}
}
2020-05-21 22:50:38 +02:00
stage('Document') {
2021-11-07 02:55:00 +01:00
steps {
sh 'dotnet cake --target Document --branch ' + env.BRANCH_NAME
}
}
stage('Publish Docs') {
2020-05-21 22:50:38 +02:00
when {
2021-11-07 02:55:00 +01:00
branch 'release'
2020-03-05 00:41:29 +01:00
}
2020-02-21 13:41:33 +01:00
steps {
sh 'rm -rf /var/www/MLEM/*'
2021-11-07 02:55:00 +01:00
sh 'cp Docs/_site/** /var/www/MLEM/ -r'
}
2020-02-21 13:41:33 +01:00
}
2020-02-17 17:24:13 +01:00
}
2021-03-20 21:37:43 +01:00
post {
always {
nunit testResultsPattern: '**/TestResults.xml'
cobertura coberturaReportFile: '**/coverage.cobertura.xml'
}
}
2020-02-26 10:26:22 +01:00
environment {
BAGET = credentials('3db850d0-e6b5-43d5-b607-d180f4eab676')
NUGET = credentials('e1bf7f6c-6047-4f7e-b639-15240a8f8351')
2020-02-26 10:26:22 +01:00
}
2020-03-05 00:41:29 +01:00
}