-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
39 lines (37 loc) · 866 Bytes
/
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
def gitRepo = 'https://github.com/piinalpin/graphql-spring-boot.git'
def gitBranch = 'master'
def jenkinsCredentialsID = 'test-jenkins-github'
pipeline {
agent {label "linux"}
options { skipDefaultCheckout() }
stages {
stage("Checkout") {
steps {
git url: "${gitRepo}", branch: "${gitBranch}", credentialsId: "${jenkinsCredentialsID}"
}
}
stage("Run Test") {
steps {
sh """
mvn --version
gradle --version
docker info
"""
}
}
stage("Build") {
steps {
sh """
mvn clean install -Dmaven.test.skip=true
"""
}
}
stage("Package") {
steps {
sh """
mvn clean package -Dmaven.test.skip=true
"""
}
}
}
}