passerelle/Jenkinsfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
2.0 KiB
Plaintext
Raw Normal View History

2020-12-26 15:21:15 +01:00
@Library('eo-jenkins-lib@main') import eo.Utils
2018-08-09 17:24:50 +02:00
pipeline {
agent any
options {
disableConcurrentBuilds()
timeout(time: 30, unit: 'MINUTES')
}
environment {
max = 100000
RAND_TEST = "${Math.abs(new Random().nextInt(max+1))}"
}
2018-08-09 17:24:50 +02:00
stages {
stage('Unit Tests') {
steps {
sh "NUMPROCESSES=6 RAND_TEST=${env.RAND_TEST} tox -rv"
2018-08-09 17:24:50 +02:00
}
2019-02-12 19:59:57 +01:00
post {
always {
script {
utils = new Utils()
utils.publish_coverage('coverage.xml')
utils.publish_coverage_native('index.html')
utils.publish_pylint('pylint.out')
}
mergeJunitResults()
2019-02-12 19:59:57 +01:00
}
}
2018-08-09 17:24:50 +02:00
}
stage('Packaging') {
steps {
script {
env.SHORT_JOB_NAME=sh(
returnStdout: true,
// given JOB_NAME=gitea/project/PR-46, returns project
// given JOB_NAME=project/main, returns project
script: '''
echo "${JOB_NAME}" | sed "s/gitea\\///" | awk -F/ '{print $1}'
'''
).trim()
if (env.GIT_BRANCH == 'main' || env.GIT_BRANCH == 'origin/main') {
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d bullseye ${SHORT_JOB_NAME}"
} else if (env.GIT_BRANCH.startsWith('hotfix/')) {
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d bullseye --branch ${env.GIT_BRANCH} --hotfix ${SHORT_JOB_NAME}"
2018-08-09 17:24:50 +02:00
}
}
}
}
}
post {
always {
script {
utils = new Utils()
utils.mail_notify(currentBuild, env, 'ci+jenkins-passerelle@entrouvert.org')
2018-08-09 17:24:50 +02:00
}
}
success {
cleanWs()
}
}
}