-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathJenkinsfile.publish
77 lines (77 loc) · 2.44 KB
/
Jenkinsfile.publish
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
pipeline {
agent { label 'docker && linux' }
options {
timeout(time: 30, unit: 'MINUTES')
}
environment {
DOCKER_IMAGE = 'python'
DOCKER_TAG = '3.11-slim'
PYPI_CREDS = credentials('PyPiCredentials')
TWINE_USERNAME = "${PYPI_CREDS_USR}"
TWINE_PASSWORD = "${PYPI_CREDS_PSW}"
}
stages {
stage('Publish Pipeline') {
agent {
docker {
image "${DOCKER_IMAGE}:${DOCKER_TAG}"
args '-e "HOME=$WORKSPACE"'
}
}
when {
tag "v*"
}
stages {
stage('Python Environment') {
options {
timeout(time: 2, unit: 'MINUTES')
}
steps {
echo "Environment: ${DOCKER_IMAGE}:${DOCKER_TAG}"
sh '''
python -m venv venv
. venv/bin/activate
pip install --upgrade pip
pip install .
pip install build twine
'''
}
}
stage('Build Package') {
options {
timeout(time: 2, unit: 'MINUTES')
}
steps {
echo "Environment: ${DOCKER_IMAGE}:${DOCKER_TAG}"
sh '''
. venv/bin/activate
python -m build
'''
}
}
stage('Publish') {
options {
timeout(time: 2, unit: 'MINUTES')
}
steps {
echo "Environment: ${DOCKER_IMAGE}:${DOCKER_TAG}"
sh '''
. venv/bin/activate
twine upload dist/*
'''
}
}
}
}
}
post {
always {
cleanWs(cleanWhenNotBuilt: false,
deleteDirs: true,
disableDeferredWipeout: true,
notFailBuild: true,
patterns: [[pattern: '.gitignore', type: 'INCLUDE'],
[pattern: '.propsfile', type: 'EXCLUDE']])
}
}
}