-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
50 lines (48 loc) · 1.2 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
pipeline {
agent any
stages {
stage('Set Branch name') {
steps {
script {
echo "Current branch is: ${env.GIT_BRANCH}"
}
}
}
stage('Set Commit ID') {
steps {
script {
env.COMMIT_ID = sh(returnStdout: true, script: 'git rev-parse HEAD').trim()
echo "Current commit ID is: ${env.COMMIT_ID}"
}
}
}
stage('Build') {
steps {
sh 'echo "${COMMIT_ID}"'
sh 'pip install poetry'
sh 'rm -r dist || echo '
sh 'poetry update'
sh 'poetry build'
}
}
stage('Upload') {
when {
expression {
return env.GIT_BRANCH == "main"
}
}
steps {
sh 'echo "${COMMIT_ID}"'
sh 'poetry run twine upload dist/* || echo'
}
}
}
post {
success {
echo 'Build succeeded!'
}
failure {
echo 'Build failed!'
}
}
}