-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
43 lines (39 loc) · 1.29 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
#!groovy
node {
load "$JENKINS_HOME/jobvars.env"
env.JAVA_HOME = "${tool 'openjdk-11'}"
env.PATH = "${env.JAVA_HOME}/bin:${env.PATH}"
stage('Checkout') {
checkout scm
}
stage('Assemble') {
sh "./gradlew clean assemble -P buildNumber=${env.BUILD_NUMBER}"
}
stage('Test') {
sh './gradlew test --full-stacktrace'
}
stage('Build') {
sh './gradlew build'
}
stage('Docker image') {
sh "./gradlew buildDocker"
}
stage('Push to registries') {
withEnv(["AWS_URI=${AWS_URI}", "AWS_REGION=${AWS_REGION}"]) {
sh 'docker tag reportportal-dev/migrations-complex ${AWS_URI}/migrations-complex:SNAPSHOT-${BUILD_NUMBER}'
def image = env.AWS_URI + '/migrations-complex' + ':SNAPSHOT-' + env.BUILD_NUMBER
def url = 'https://' + env.AWS_URI
def credentials = 'ecr:' + env.AWS_REGION + ':aws_credentials'
echo image
docker.withRegistry(url, credentials) {
docker.image(image).push()
}
}
}
stage('Cleanup') {
withEnv(["AWS_URI=${AWS_URI}"]) {
sh 'docker rmi ${AWS_URI}/migrations-complex:SNAPSHOT-${BUILD_NUMBER}'
sh 'docker rmi reportportal-dev/migrations-complex:latest'
}
}
}