-
Notifications
You must be signed in to change notification settings - Fork 14
/
Jenkinsfile
169 lines (165 loc) · 5.61 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
pipeline {
agent any
options {
checkoutToSubdirectory('PYHANDLE')
}
environment {
PROJECT_DIR="PYHANDLE"
GH_USER = 'newgrnetci'
GH_EMAIL = '<[email protected]>'
}
stages {
stage ('Test python 3.9') {
agent {
dockerfile {
filename "pyhandle/tests/testdockers/Dockerfile-py3.9"
dir "$PROJECT_DIR"
additionalBuildArgs "-t eudat-pyhandle:py3.9"
args "-u root:root"
}
}
steps {
sh '''
cd $WORKSPACE/$PROJECT_DIR/pyhandle/tests
./docker-entrypoint.sh coverage
'''
cobertura coberturaReportFile: '**/coverage.xml'
}
}
stage ('Test python 3.10') {
agent {
dockerfile {
filename "pyhandle/tests/testdockers/Dockerfile-py3.10"
dir "$PROJECT_DIR"
additionalBuildArgs "-t eudat-pyhandle:py3.10"
args "-u root:root"
}
}
steps {
sh '''
cd $WORKSPACE/$PROJECT_DIR/pyhandle/tests
./docker-entrypoint-310.sh coverage
'''
cobertura coberturaReportFile: '**/coverage.xml'
}
}
stage ('Test python 3.11') {
agent {
dockerfile {
filename "pyhandle/tests/testdockers/Dockerfile-py3.11"
dir "$PROJECT_DIR"
additionalBuildArgs "-t eudat-pyhandle:py3.11"
args "-u root:root"
}
}
steps {
sh '''
cd $WORKSPACE/$PROJECT_DIR/pyhandle/tests
./docker-entrypoint-310.sh coverage
'''
cobertura coberturaReportFile: '**/coverage.xml'
}
}
stage ('Test python 3.12') {
agent {
dockerfile {
filename "pyhandle/tests/testdockers/Dockerfile-py3.12"
dir "$PROJECT_DIR"
additionalBuildArgs "-t eudat-pyhandle:py3.12"
args "-u root:root"
}
}
steps {
sh '''
cd $WORKSPACE/$PROJECT_DIR/pyhandle/tests
./docker-entrypoint-310.sh coverage
'''
cobertura coberturaReportFile: '**/coverage.xml'
}
}
stage ('Test python 3.13') {
agent {
dockerfile {
filename "pyhandle/tests/testdockers/Dockerfile-py3.13"
dir "$PROJECT_DIR"
additionalBuildArgs "-t eudat-pyhandle:py3.13"
args "-u root:root"
}
}
steps {
sh '''
cd $WORKSPACE/$PROJECT_DIR/pyhandle/tests
./docker-entrypoint-310.sh coverage
'''
cobertura coberturaReportFile: '**/coverage.xml'
}
}
stage ('Upload to PyPI'){
when {
branch 'master'
}
agent {
docker {
image 'argo.registry:5000/python3'
}
}
steps {
echo 'Build python package'
withCredentials(bindings: [usernamePassword(credentialsId: 'pyhandle-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 {
cleanWs()
}
}
}
stage ('Deploy Docs') {
when {
changeset 'docs/source/**'
}
agent {
docker {
image 'eudat-pyhandle:py3.10'
}
}
steps {
echo 'Sending to gh-pages...'
sshagent (credentials: ['jenkins-master']) {
sh '''
ls ~/
mkdir ~/.ssh && ssh-keyscan -H github.com > ~/.ssh/known_hosts
git config --global user.email ${GH_EMAIL}
git config --global user.name ${GH_USER}
GIT_USER=${GH_USER}
USE_SSH=true
cd $WORKSPACE/$PROJECT_DIR
cd docs
make html
cd $WORKSPACE/$PROJECT_DIR/docs/build/html
touch .nojekyll
rm -rf .git
git init
git remote add deploy [email protected]:EUDAT-B2HANDLE/PYHANDLE
git checkout -b gh-pages
git add .
git commit -am "docs update"
git push deploy gh-pages --force
rm -rf .git
'''
}
}
}
}
post {
always {
cleanWs()
}
}
}