-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathJenkinsfile
40 lines (29 loc) · 1.4 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
#!groovy
// https://rahmonov.me/posts/continuous-integration-and-continous-deployment-for-django-app-with-jenkins/
// https://www.ionutgavrilut.com/2019/jenkins-pipelines-sh-source-not-found/
node {
try {
stage 'Checkout'
checkout scm
sh 'git log HEAD^..HEAD --pretty="%h %an - %s" > GIT_CHANGES'
def lastChanges = readFile('GIT_CHANGES')
slackSend color: "warning", message: "Started `${env.JOB_NAME}#${env.BUILD_NUMBER}`\n\n_The changes:_\n${lastChanges}"
stage 'Test'
sh 'python3.8 -m venv ./venv'
sh 'source venv/bin/activate'
sh 'pip3 install -r requirements.txt'
sh 'python3.8 manage.py jenkins'
// sh 'python3.8 manage.py jenkins --enable-coverage'
// Coverage changes to get_data an for now crash
// https://github.com/kmmbvnr/django-jenkins/pull/375
stage 'Deploy'
sh "chmod +x -R '${env.WORKSPACE}/deployment'"
sh './deployment/deploy_prod.sh'
stage 'Publish results'
slackSend color: "good", message: "Build successful: `${env.JOB_NAME}#${env.BUILD_NUMBER}` <${env.BUILD_URL}|Open in Jenkins>"
}
catch (err) {
slackSend color: "danger", message: "Build failed :face_with_head_bandage: \n`${env.JOB_NAME}#${env.BUILD_NUMBER}` <${env.BUILD_URL}|Open in Jenkins>"
throw err
}
}