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
48 lines (39 loc) · 1.42 KB
/
Copy pathJenkinsfile
File metadata and controls
48 lines (39 loc) · 1.42 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
43
44
45
46
47
48
// https://jenkins.io/doc/book/pipeline/syntax/
pipeline {
agent any
triggers {
upstream(upstreamProjects: "ObjectStore/${env.BRANCH_NAME.replaceAll("/", "%2F")}",
threshold: hudson.model.Result.FAILURE)
cron ("*/20 0-6 * * *") // every 20 minutes at night (0:00 - 6:00)
}
stages {
stage('init') {
steps {
// Copied file exists on CI server only
sh 'cp /var/my-private-files/private.properties ./gradle.properties'
sh 'chmod +x gradlew'
sh 'rm tests/objectbox-java-test/hs_err_pid*.log || true' // "|| true" for an OK exit code if no file is found
}
}
stage('build-java') {
steps {
sh './test-with-asan.sh -Dextensive-tests=true -PpreferedRepo=local clean build uploadArchives'
}
}
}
// For global vars see /jenkins/pipeline-syntax/globals
post {
always {
junit '**/build/test-results/**/TEST-*.xml'
archive 'tests/*/hs_err_pid*.log'
}
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}"
}
}
}