-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
112 lines (109 loc) · 2.96 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
pipeline {
agent {
docker {
label "docker"
image "CI_IMAGE:VERSION"
args '-e "HOME=/" -u 0:0'
}
}
environment {
ACCOUNT_NUMBER = "12345678"
AWS_CREDENTIALS = "aws-jenkins-credentials"
}
options {
timeout(time: 10, unit: "MINUTES")
buildDiscarder(logRotator(numToKeepStr: "5"))
}
stages {
stage("Prep") {
steps {
withCredentials(${AWS_CREDENTIALS}) {
sh '''
make prep
make tffmt
make tfinit
make tfvalidate
'''
}
}
}
stage("CreateECR") {
// only actually build when on main branch
when {
branch 'main'
}
steps {
withCredentials(${AWS_CREDENTIALS}) {
sh '''
make tfecrapply
'''
}
}
}
stage("BuildandTestCode") {
// don't build this in a container since docker in docker can cause issues
agent {
label "docker"
}
steps {
sh '''
make codetest
'''
}
}
stage("PushCode") {
// don't run this in a container since docker in docker can cause issues
agent {
label "docker"
}
// only actually push when on main branch
when {
branch 'main'
}
steps {
withCredentials(${AWS_CREDENTIALS}) {
sh '''
make codelogin
make codepush
'''
}
}
}
stage("BuildInfra") {
// only actually build when on main branch
when {
branch 'main'
}
steps {
withCredentials(${AWS_CREDENTIALS}) {
sh '''
make tfapply
'''
}
}
}
stage("ActualResultTest") {
// only run when on main branch
when {
branch 'main'
}
steps {
sh '''
make test
'''
}
}
}
post {
always {
// run this after execution so it can be used in a multibranch pipeline
// returning status to bitbucket so it can be used to test that a branch builds before a PR
// deleteDir since we're running the docker container as root
script {
currentBuild.result = currentBuild.result ?: 'SUCCESS'
notifyBitbucket()
deleteDir()
}
}
}
}