-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile.build
94 lines (88 loc) · 3.71 KB
/
Jenkinsfile.build
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
pipeline {
agent {
node {
label 'team:makerspace-small'
}
}
triggers { pollSCM('*/5 * * * *') }
parameters {
choice(choices: ['test', 'beta', 'prod'], description: 's3 bucket that the build will target', name: 'BUILD_DEST')
choice(choices: ['test', 'beta', 'prod'], description: 'The mode selected will tell Vue which environment variables to use. Various feature flags will be disabled/enabled depending on mode. More importantly, the source of the tiles will change, with the development build loading tiles from the test S3 bucket and the production build loading tiles from the prod S3 bucket.', name: 'VUE_BUILD_MODE')
gitParameter(name: 'BRANCH_TAG',
type: 'PT_BRANCH_TAG',
selectedValue: 'DEFAULT',
defaultValue: 'origin/main')
}
stages {
stage('clean workspace'){
steps{
cleanWs()
}
}
stage('checkout'){
steps{
checkout([$class: 'GitSCM',
branches: [[name: "${params.BRANCH_TAG}"]],
doGenerateSubmoduleConfigurations: false,
extensions: [],
gitTool: 'Default',
submoduleCfg: [],
userRemoteConfigs: [[url: 'https://github.com/usgs-vizlab/what-is-drought-test.git']]
])
}
}
stage('build') {
steps {
sh """
docker build . --tag="what-is-drought-test-docker" --build-arg BUILDTARGET=${params.BUILD_DEST} --build-arg VUE_BUILD_MODE=${params.VUE_BUILD_MODE}
docker run what-is-drought-test-docker
pathtemplate=":tmp/what-is-drought-test/dist"
dockerinstanceid=\$( docker ps -l -q )
docker cp "\${dockerinstanceid}\${pathtemplate}" "$WORKSPACE"
docker rm "\${dockerinstanceid}"
"""
}
}
stage('send to S3') {
steps {
script {
if ("${params.BUILD_DEST}" == "prod") {
targetDomain = "s3://water-visualizations-prod-website/visualizations/what-is-drought-test"
}
else if ("${params.BUILD_DEST}" == "beta") {
targetDomain = "s3://water-visualizations-beta-website/visualizations/what-is-drought-test"
}
else {
targetDomain = "s3://water-visualizations-test-website/visualizations/what-is-drought-test"
}
}
sh """
aws s3 rm "${targetDomain}" --recursive
aws s3 cp "$WORKSPACE/dist" "${targetDomain}" --recursive
"""
}
}
}
post {
success {
mail to: '[email protected]',
subject: "Success: ${currentBuild.fullDisplayName}",
body: "Pipeline finished successfully ${env.BUILD_URL}"
}
unstable {
mail to: '[email protected]',
subject: "Unstable: ${currentBuild.fullDisplayName}",
body: "Pipeline is unstable ${env.BUILD_URL}"
}
failure {
mail to: '[email protected]',
subject: "Failure: ${currentBuild.fullDisplayName}",
body: "Pipeline failed ${env.BUILD_URL}"
}
changed {
mail to: '[email protected]',
subject: "Changes: ${currentBuild.fullDisplayName}",
body: "Pipeline detected changes ${env.BUILD_URL}"
}
}
}