-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathJenkinsfile
More file actions
84 lines (83 loc) · 3.67 KB
/
Jenkinsfile
File metadata and controls
84 lines (83 loc) · 3.67 KB
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
pipeline {
agent any
options {
checkoutToSubdirectory('argo-ams-library')
}
environment {
PROJECT_DIR="argo-ams-library"
GIT_COMMIT=sh(script: "cd ${WORKSPACE}/$PROJECT_DIR && git log -1 --format=\"%H\"",returnStdout: true).trim()
GIT_COMMIT_HASH=sh(script: "cd ${WORKSPACE}/$PROJECT_DIR && git log -1 --format=\"%H\" | cut -c1-7",returnStdout: true).trim()
GIT_COMMIT_DATE=sh(script: "date -d \"\$(cd ${WORKSPACE}/$PROJECT_DIR && git show -s --format=%ci ${GIT_COMMIT_HASH})\" \"+%Y%m%d%H%M%S\"",returnStdout: true).trim()
}
stages {
stage ('Testing and building...') {
parallel {
stage('Rocky 9') {
agent {
docker {
image 'argo.registry:5000/epel-9-ams'
args '-u jenkins:jenkins'
}
}
stages {
stage ('Test Rocky 9') {
steps {
echo 'Executing unit tests @ Rocky 9...'
sh '''
cd ${WORKSPACE}/$PROJECT_DIR
rm -f .python-version &>/dev/null
rm -rf .coverage* .tox/ coverage.xml &> /dev/null
source $HOME/pyenv.sh
ALLPYVERS=$(pyenv versions | grep '^[ ]*[0-9]' | tr '\n' ' ')
echo Found Python versions $ALLPYVERS
pyenv local $ALLPYVERS
export TOX_SKIP_ENV="py27.*|py36.*|py37.*"
tox -p all
coverage xml --omit=*usr* --omit=*.tox*
'''
cobertura coberturaReportFile: '**/coverage.xml'
}
}
stage ('Build Rocky 9') {
steps {
echo 'Building Rocky 9 RPM...'
withCredentials(bindings: [sshUserPrivateKey(credentialsId: 'jenkins-rpm-repo', usernameVariable: 'REPOUSER', \
keyFileVariable: 'REPOKEY')]) {
sh "/home/jenkins/build-rpm.sh -w ${WORKSPACE} -b ${BRANCH_NAME} -d rocky9 -p ${PROJECT_DIR} -s ${REPOKEY}"
}
archiveArtifacts artifacts: '**/*.rpm', fingerprint: true
}
}
}
}
}
}
stage ('Upload to PyPI'){
when {
branch 'master'
}
agent {
docker {
image 'argo.registry:5000/python3'
}
}
steps {
echo 'Build python package'
withCredentials(bindings: [usernamePassword(credentialsId: 'pypi-token', usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
sh '''
cd ${WORKSPACE}/$PROJECT_DIR
pipenv install --dev
pipenv run python setup.py sdist bdist_wheel
pipenv run python -m twine upload -u $USERNAME -p $PASSWORD dist/*
'''
}
}
}
}
post {
always {
echo 'Cleaning workspace and exiting'
cleanWs()
}
}
}