-
Notifications
You must be signed in to change notification settings - Fork 3
/
Jenkinsfile
45 lines (45 loc) · 1.5 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
pipeline {
agent any
stages {
stage('Prepare') {
steps {
withFolderProperties {
script {
SETTINGS = [:]
SETTINGS.TAG_NAME = env.TAG_NAME
SETTINGS.PROVISION_CREDENTIALS_ID = env.PROVISION_CREDENTIALS_ID
SETTINGS.AWS_REGION = env.AWS_DEFAULT_REGION ?: env.AWS_REGION
SETTINGS.ECR_REGISTRY_ID = env.ECR_REGISTRY_ID
SETTINGS.ECR_ENDPOINT = "${SETTINGS.ECR_REGISTRY_ID}.dkr.ecr.${SETTINGS.AWS_REGION}.amazonaws.com"
echo "Running with settings: ${SETTINGS}"
}
}
}
}
stage('Build') {
steps {
script {
sh """
./scripts/docker/build.sh "${SETTINGS.TAG_NAME}"
"""
}
}
}
stage('Deploy images to ECR') {
steps {
script {
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: SETTINGS.PROVISION_CREDENTIALS_ID]]) {
sh """
./scripts/docker/push_to_ecr.sh "${SETTINGS.TAG_NAME}" "${SETTINGS.ECR_ENDPOINT}"
"""
}
}
}
}
}
post {
cleanup {
cleanWs cleanWhenFailure: false
}
}
}