2018-07-12 15:28:59 +02:00
|
|
|
// This Jenkinsfile will build a builder image and then run the actual build and tests inside this image
|
|
|
|
// It's very important to not execute any scripts outside of the builder container, as it's our protection against
|
|
|
|
// external developers bringing in harmful code into Jenkins.
|
|
|
|
// Jenkins will only run the build if this Jenkinsfile was not modified in an external pull request. Only branches
|
|
|
|
// which are part of the Dash repo will allow modification to the Jenkinsfile.
|
|
|
|
|
|
|
|
def targets = [
|
|
|
|
'win32',
|
|
|
|
'win64',
|
|
|
|
'linux32',
|
|
|
|
'linux64',
|
|
|
|
'linux64_nowallet',
|
|
|
|
'linux64_release',
|
|
|
|
'mac',
|
|
|
|
]
|
|
|
|
|
|
|
|
def tasks = [:]
|
|
|
|
for(int i = 0; i < targets.size(); i++) {
|
|
|
|
def target = targets[i]
|
|
|
|
|
|
|
|
tasks["${target}"] = {
|
|
|
|
node {
|
|
|
|
def BUILD_NUMBER = sh(returnStdout: true, script: 'echo $BUILD_NUMBER').trim()
|
|
|
|
def BRANCH_NAME = sh(returnStdout: true, script: 'echo $BRANCH_NAME').trim()
|
|
|
|
def UID = sh(returnStdout: true, script: 'id -u').trim()
|
|
|
|
def HOME = sh(returnStdout: true, script: 'echo $HOME').trim()
|
|
|
|
def pwd = sh(returnStdout: true, script: 'pwd').trim()
|
2018-07-12 17:43:20 +02:00
|
|
|
def hasCache = false
|
2018-07-12 15:28:59 +02:00
|
|
|
|
|
|
|
checkout scm
|
|
|
|
|
|
|
|
// restore cache
|
|
|
|
try {
|
|
|
|
copyArtifacts(projectName: "dashpay-dash/${BRANCH_NAME}", optional: true, selector: lastSuccessful(), filter: "ci-cache-${target}.tar.gz")
|
|
|
|
} catch (Exception e) {
|
|
|
|
}
|
|
|
|
if (fileExists("ci-cache-${target}.tar.gz")) {
|
|
|
|
hasCache = true
|
|
|
|
echo "Using cache from dashpay-dash/${BRANCH_NAME}"
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
copyArtifacts(projectName: 'dashpay-dash/develop', optional: true, selector: lastSuccessful(), filter: "ci-cache-${target}.tar.gz");
|
|
|
|
} catch (Exception e) {
|
|
|
|
}
|
|
|
|
if (fileExists("ci-cache-${target}.tar.gz")) {
|
|
|
|
hasCache = true
|
|
|
|
echo "Using cache from dashpay-dash/develop"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def env = [
|
|
|
|
"BUILD_TARGET=${target}",
|
|
|
|
"PULL_REQUEST=false",
|
|
|
|
"JOB_NUMBER=${BUILD_NUMBER}",
|
|
|
|
]
|
|
|
|
withEnv(env) {
|
|
|
|
def builderImageName="dash-builder-${target}"
|
|
|
|
|
|
|
|
def builderImage
|
|
|
|
stage("${target}/builder-image") {
|
|
|
|
builderImage = docker.build("${builderImageName}", "--build-arg BUILD_TARGET=${target} ci -f ci/Dockerfile.builder")
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hasCache) {
|
|
|
|
sh "cd ${pwd} && tar xzfv ci-cache-${target}.tar.gz"
|
|
|
|
} else {
|
|
|
|
sh "mkdir -p ${pwd}/ci-cache-${target}"
|
|
|
|
}
|
|
|
|
|
|
|
|
builderImage.inside("-t") {
|
|
|
|
stage("${target}/depends") {
|
|
|
|
sh './ci/build_depends.sh'
|
|
|
|
}
|
|
|
|
stage("${target}/build") {
|
|
|
|
sh './ci/build_src.sh'
|
|
|
|
}
|
|
|
|
stage("${target}/test") {
|
|
|
|
sh './ci/test_unittests.sh'
|
|
|
|
}
|
|
|
|
stage("${target}/test") {
|
|
|
|
sh './ci/test_integrationtests.sh'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// archive cache
|
|
|
|
sh "tar czfv ci-cache-${target}.tar.gz ci-cache-${target}"
|
|
|
|
archiveArtifacts artifacts: "ci-cache-${target}.tar.gz", fingerprint: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parallel tasks
|
|
|
|
|