-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathJenkinsfile
146 lines (134 loc) · 5.82 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
pipeline {
agent { label 'worker' }
options {
timeout(time: 30, unit: 'MINUTES')
}
environment {
REPO_NAME = sh(returnStdout: true, script: 'basename `git remote get-url origin` .git').trim()
VERSION = sh(returnStdout: true, script: 'grep -Po "^version = \\"\\K([^\\"]+)" pyproject.toml').trim()
LATEST_AUTHOR = sh(returnStdout: true, script: 'git show -s --pretty=%an').trim()
LATEST_COMMIT_ID = sh(returnStdout: true, script: 'git describe --tags --long --always').trim()
PYTEST_TEST_OPTIONS = ' '
SNAPSHOT_BRANCH_REGEX = /(^main$)/
RELEASE_REGEX = /^([0-9]+(\.[0-9]+)*)(-(RC|beta-|alpha-)[0-9]+)?$/
RELEASE_DEPLOY = false
SNAPSHOT_DEPLOY = false
POETRY = 'python3 -m poetry'
POETRY_OPTIONS = '--no-ansi --no-interaction'
// wait for an answer to https://github.com/python-poetry/poetry/issues/1567#issuecomment-800542938
// POETRY_RUN = 'python -m poetry run --no-ansi --no-interaction'
POETRY_RUN = 'python3 -m poetry run'
DOCKER_CREDENTIALS_ID = 'DockerHubHeiGITCredentials'
DOCKER_REPOSITORY = 'heigit/ohsome-quality-api'
WORK_DIR = '/opt/oqapi'
MODULE_DIR = '.'
// move to libraries later
UID = sh(returnStdout: true, script: 'id -u').trim()
GID = sh(returnStdout: true, script: 'id -g').trim()
}
stages {
stage('Build') {
steps {
script {
echo REPO_NAME
echo LATEST_AUTHOR
echo LATEST_COMMIT_ID
echo env.BRANCH_NAME
echo env.BUILD_NUMBER
echo env.TAG_NAME
if (!(VERSION ==~ RELEASE_REGEX || VERSION ==~ /.*-SNAPSHOT$/)) {
echo 'Version:'
echo VERSION
error 'The version declaration is invalid. It is neither a release nor a snapshot.'
}
}
script {
sh '${POETRY} install ${POETRY_OPTIONS}'
}
}
post {
failure {
rocket_buildfail()
}
}
}
stage('Test') {
steps {
script {
// run pytest
sh 'VCR_RECORD_MODE=none ${POETRY_RUN} pytest --cov=ohsome_quality_api --cov-report=xml tests'
// run static analysis with sonar-scanner
def scannerHome = tool 'SonarScanner 4'
withSonarQubeEnv('sonarcloud GIScience/ohsome') {
SONAR_CLI_PARAMETER =
"-Dsonar.python.coverage.reportPaths=${WORK_DIR}/coverage.xml " +
"-Dsonar.projectVersion=${VERSION}"
if (env.CHANGE_ID) {
SONAR_CLI_PARAMETER += ' ' +
"-Dsonar.pullrequest.key=${env.CHANGE_ID} " +
"-Dsonar.pullrequest.branch=${env.CHANGE_BRANCH} " +
"-Dsonar.pullrequest.base=${env.CHANGE_TARGET}"
} else {
SONAR_CLI_PARAMETER += ' ' +
"-Dsonar.branch.name=${env.BRANCH_NAME}"
}
sh "${scannerHome}/bin/sonar-scanner " + SONAR_CLI_PARAMETER
}
// run other static code analysis
sh '${POETRY_RUN} ruff format --check --diff .'
sh '${POETRY_RUN} ruff check .'
}
}
post {
failure {
rocket_testfail()
}
}
}
stage('Check Dependencies') {
when {
expression {
if (currentBuild.number > 1) {
return (((currentBuild.getStartTimeInMillis() - currentBuild.previousBuild.getStartTimeInMillis()) > 2592000000) && (env.BRANCH_NAME ==~ SNAPSHOT_BRANCH_REGEX)) //2592000000 30 days in milliseconds
}
return false
}
}
steps {
script {
update_notify = sh(returnStdout: true, script: '${POETRY} update ${POETRY_OPTIONS} --dry-run | tail -n +4 | grep -v ": Skipped " | sort -u').trim()
echo update_notify
}
rocket_basicsend("Check your dependencies in *${REPO_NAME}*. You might have updates: ${update_notify}")
}
post {
failure {
rocket_basicsend("Checking for updates in *${REPO_NAME}*-build nr. ${env.BUILD_NUMBER} *failed* on Branch - ${env.BRANCH_NAME} (<${env.BUILD_URL}|Open Build in Jenkins>). Latest commit from ${LATEST_AUTHOR}.")
}
}
}
stage('Build and Deploy Image') {
steps {
script {
docker.withRegistry('', DOCKER_CREDENTIALS_ID) {
if (env.BRANCH_NAME ==~ SNAPSHOT_BRANCH_REGEX) {
dockerImage = docker.build(DOCKER_REPOSITORY + ':' + env.BRANCH_NAME)
dockerImage.push()
}
if (VERSION ==~ RELEASE_REGEX && env.TAG_NAME ==~ RELEASE_REGEX) {
dockerImage = docker.build(DOCKER_REPOSITORY + ':' + VERSION)
dockerImage.push()
dockerImage.push('latest')
}
}
}
}
}
stage('Wrapping Up') {
steps {
encourage()
status_change()
}
}
}
}