-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
60 lines (53 loc) · 1.03 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
pipeline {
agent {
label 't7610'
}
triggers {
cron(env.BRANCH_NAME == 'develop' ? 'H H(1-5) * * 1-7' : '')
}
options { disableConcurrentBuilds() }
stages {
stage('packer build dynamics vagrant box') {
steps {
script {
sh """
./scripts/build-packer.sh
"""
}
}
}
stage('terraform apply dynamics') {
steps {
script {
sh """
JENKINS_NODE_COOKIE=dontKillMe BUILD_ID=dontKillMe ./scripts/build-terraform.sh
"""
}
}
}
stage('test build status') {
steps {
script {
sh """
./scripts/test-build.sh
"""
}
}
}
stage('test new org created') {
steps {
script {
sh """
"""
try {
sh './scripts/test-org.sh'
}
catch (exc) {
echo 'Creating org failed!'
currentBuild.result = 'UNSTABLE'
}
}
}
}
}
}