forked from objectbox/objectbox-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
42 lines (34 loc) · 1.14 KB
/
Copy pathJenkinsfile
File metadata and controls
42 lines (34 loc) · 1.14 KB
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
// https://jenkins.io/doc/book/pipeline/syntax/
pipeline {
agent any
triggers {
def branch = env.BRANCH_NAME.replaceAll("/", "%2F")
upstream(upstreamProjects: "ObjectStore/$branch")
}
stages {
stage('build-java') {
steps {
// Copied file exists on CI server only
sh 'cp /var/my-private-files/private.properties ./gradle.properties'
sh 'chmod +x gradlew'
sh './gradlew --stacktrace ' +
'-Dextensive-tests=true ' +
'clean build uploadArchives -PpreferedRepo=local'
}
}
}
// For global vars see /jenkins/pipeline-syntax/globals
post {
always {
junit '**/build/test-results/**/TEST-*.xml'
}
changed {
slackSend color: "good",
message: "Changed to ${currentBuild.currentResult}: ${currentBuild.fullDisplayName}\n${env.BUILD_URL}"
}
failure {
slackSend color: "danger",
message: "Failed: ${currentBuild.fullDisplayName}\n${env.BUILD_URL}"
}
}
}