forked from datagovau/ckanext-zippreview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
220 lines (180 loc) · 7.98 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
TOOLS_IMAGE = 'dga-tools:latest'
TOOLS_ARGS = '--volume /var/run/docker.sock:/var/run/docker.sock --network host --volume /tmp:/tmp'
/*
* UTC About Midday Sydney time on a Tuesday->Thursday for Prod/Identity,
* any work hour for Dev/Staging/Pipeline.
*/
CRON_TAB = BRANCH_NAME ==~ /(Production|Identity)/ ? "H H(2-3) * * H(2-4)" : BRANCH_NAME ==~ /(Develop|Staging|Pipeline)/ ? "H H(0-5) * * H(1-5)": ""
pipeline {
agent none
triggers {
pollSCM( '* * * * *')
cron( CRON_TAB)
}
options {
timeout(time: 1, unit: 'HOURS')
disableConcurrentBuilds()
}
stages {
stage('Build') {
agent {
docker {
image TOOLS_IMAGE
args TOOLS_ARGS
}
}
steps {
dir('dga-ckan_web') {
git branch: 'Develop', credentialsId: 'PAT', url: 'https://github.com/datagovau/dga-ckan_web.git'
}
withCredentials([sshUserPrivateKey(credentialsId: "GitHub-ssh", keyFileVariable: 'keyfile')]) {
sh '''
#!/bin/bash
set -ex
mkdir -p ~/.ssh
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
echo "Host github.com" > ~/.ssh/config
echo " HostName github.com" >> ~/.ssh/config
echo " IdentityFile ${keyfile}" >> ~/.ssh/config
git config --global user.email "[email protected]"
git config --global user.name "Jenkins"
export WORKSPACE=${WORKSPACE}/dga-ckan_web
cd ${WORKSPACE}
tmpCKANEXT=$(mktemp /tmp/ckanext_XXXXXX.json)
POS=$(jq '.resources|map(.repository == "ckanext-zippreview") | index(true)' ckanext.json )
jq ".resources[${POS}].commitId =\\"${GIT_COMMIT}\\"" ckanext.json > ${tmpCKANEXT}
mv ${tmpCKANEXT} ckanext.json
jq . ckanext.json
./build.sh --clean
/home/tools/push.sh
'''.stripIndent()
}
}
}
stage('QA') {
parallel {
stage('scan-secrets'){
agent {
docker {
image TOOLS_IMAGE
args TOOLS_ARGS
}
}
steps {
sh '''\
/home/tools/secrets_scan.sh
'''.stripIndent()
}
}
stage('selenium-chrome') {
agent {
docker {
image TOOLS_IMAGE
args TOOLS_ARGS
}
}
steps {
dir('dga-ckan_web') {
git branch: 'Develop', credentialsId: 'PAT', url: 'https://github.com/DataGovAU/dga-ckan_web.git'
}
dir('dga-selenium-tests') {
git branch: 'Develop', url: 'https://github.com/DataGovAU/dga-selenium-tests.git'
}
sh '''\
#!/bin/bash
set -ex
cp -r dga-selenium-tests/sides/* dga-ckan_web/test/selenium/sides/
export WORKSPACE=${WORKSPACE}/dga-ckan_web
cd ${WORKSPACE}
/home/tools/pull.sh
test/selenium/pull.sh
test/selenium/run.sh --browser chrome
'''.stripIndent()
}
post {
always {
archiveArtifacts artifacts: 'dga-ckan_web/test/selenium/.logs/*', fingerprint: true
junit 'dga-ckan_web/test/selenium/.output/**/*.xml'
sh '''
rm -rf dga-ckan_web/test/selenium/.logs dga-ckan_web/test/selenium/.output
'''.stripIndent()
}
}
}
stage('selenium-firefox') {
agent {
docker {
image TOOLS_IMAGE
args TOOLS_ARGS
}
}
steps {
dir('dga-ckan_web') {
git branch: 'Develop', credentialsId: 'PAT', url: 'https://github.com/datagovau/dga-ckan_web.git'
}
dir('dga-selenium-tests') {
git branch: 'Develop', url: 'https://github.com/DataGovAU/dga-selenium-tests.git'
}
sh '''\
#!/bin/bash
set -ex
cp -r dga-selenium-tests/sides/* dga-ckan_web/test/selenium/sides/
export WORKSPACE=${WORKSPACE}/dga-ckan_web
cd ${WORKSPACE}
/home/tools/pull.sh
./test/selenium/pull.sh
./test/selenium/run.sh --browser firefox
'''.stripIndent()
}
post {
always {
archiveArtifacts artifacts: 'dga-ckan_web/test/selenium/.logs/*', fingerprint: true
junit 'dga-ckan_web/test/selenium/.output/**/*.xml'
}
}
}
}
}
stage('Release') {
when {
branch 'Develop'
beforeAgent true
}
agent {
docker {
image TOOLS_IMAGE
args TOOLS_ARGS
}
}
steps {
withCredentials([sshUserPrivateKey(credentialsId: "GitHub-ssh", keyFileVariable: 'keyfile')]) {
sh '''
#!/bin/bash
set -e
mkdir -p ~/.ssh
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
echo "Host github.com" > ~/.ssh/config
echo " HostName github.com" >> ~/.ssh/config
echo " IdentityFile ${keyfile}" >> ~/.ssh/config
git config --global user.email "[email protected]"
git config --global user.name "Jenkins"
cd ${WORKSPACE}
rm -rf dga-ckan_web
git clone [email protected]:datagovau/dga-ckan_web.git
cd dga-ckan_web
tmpCKANEXT=$(mktemp /tmp/ckanext_XXXXXX.json)
POS=$(jq '.resources|map(.repository == "ckanext-zippreview") | index(true)' ckanext.json )
jq ".resources[${POS}].commitId =\\"${GIT_COMMIT}\\"" ckanext.json > ${tmpCKANEXT}
mv ${tmpCKANEXT} ckanext.json
git add .
set +e
git commit -m "Commit ID from ${JOB_NAME}"
git push
cd ..
rm -rf dga-ckan_web
'''.stripIndent()
}
}
}
}
}