-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
70 lines (67 loc) · 1.86 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
String dockerFileName = 'Dockerfile.build'
String dockerFileArgs = '-u root:root'
pipeline {
agent none
stages {
stage('Install Python Dependencies') {
agent {
dockerfile {
filename "$dockerFileName"
args "$dockerFileArgs"
}
}
steps {
sh '''#!/bin/bash
python -m venv env
source env/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt
'''
}
}
stage('Tests') {
agent {
dockerfile {
filename "$dockerFileName"
args "$dockerFileArgs"
}
}
steps {
sh '''#!/bin/bash
source env/bin/activate
coverage run --source='base' manage.py test
'''
}
}
stage('Coverage Report') {
agent {
dockerfile {
filename "$dockerFileName"
args "$dockerFileArgs"
}
}
steps {
sh '''#!/bin/bash
source env/bin/activate
coverage report
'''
}
}
stage('Deploy') {
agent {
docker {
image 'cimg/base:stable'
args '-u root'
}
}
steps {
sh '''#!/bin/bash
curl https://cli-assets.heroku.com/install.sh | sh;
heroku container:login
heroku container:push web -a gentle-temple-64246
heroku container:release web -a gentle-temple-64246
'''
}
}
}
}