forked from Archive/PX4-Autopilot
Jenkins split MacOS builds into new pipeline
This commit is contained in:
parent
daae9e85b8
commit
7ecb04db2b
|
@ -17,55 +17,6 @@ pipeline {
|
||||||
snapdragon: "lorenzmeier/px4-dev-snapdragon:2018-09-12"
|
snapdragon: "lorenzmeier/px4-dev-snapdragon:2018-09-12"
|
||||||
]
|
]
|
||||||
|
|
||||||
// MAC OSX px4_sitl_default
|
|
||||||
build_nodes["px4_sitl_default (OSX)"] = {
|
|
||||||
node("mac") {
|
|
||||||
withEnv(["CCACHE_BASEDIR=${pwd()}"]) {
|
|
||||||
stage("sitl (OSX)") {
|
|
||||||
try {
|
|
||||||
checkout(scm)
|
|
||||||
sh('export')
|
|
||||||
sh('make distclean')
|
|
||||||
sh('ccache -z')
|
|
||||||
sh('make px4_sitl_default')
|
|
||||||
sh('ccache -s')
|
|
||||||
sh('make tests')
|
|
||||||
}
|
|
||||||
catch (exc) {
|
|
||||||
throw (exc)
|
|
||||||
}
|
|
||||||
finally {
|
|
||||||
sh('make distclean')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// MAC OSX px4_fmu-v4pro_default
|
|
||||||
build_nodes["px4_fmu-v4pro_default (OSX)"] = {
|
|
||||||
node("mac") {
|
|
||||||
withEnv(["CCACHE_BASEDIR=${pwd()}"]) {
|
|
||||||
stage("px4_fmu-v4pro (OSX)") {
|
|
||||||
try {
|
|
||||||
checkout(scm)
|
|
||||||
sh('export')
|
|
||||||
sh('make distclean')
|
|
||||||
sh('ccache -z')
|
|
||||||
sh('make px4_fmu-v4pro_default')
|
|
||||||
sh('ccache -s')
|
|
||||||
}
|
|
||||||
catch (exc) {
|
|
||||||
throw (exc)
|
|
||||||
}
|
|
||||||
finally {
|
|
||||||
sh('make distclean')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
def armhf_builds = [
|
def armhf_builds = [
|
||||||
target: ["aerotenna_ocpoc_ubuntu"],
|
target: ["aerotenna_ocpoc_ubuntu"],
|
||||||
image: docker_images.armhf,
|
image: docker_images.armhf,
|
||||||
|
|
|
@ -0,0 +1,67 @@
|
||||||
|
#!/usr/bin/env groovy
|
||||||
|
|
||||||
|
pipeline {
|
||||||
|
agent none
|
||||||
|
stages {
|
||||||
|
|
||||||
|
stage('Build') {
|
||||||
|
|
||||||
|
parallel {
|
||||||
|
|
||||||
|
stage('px4_sitl_default (OSX)') {
|
||||||
|
agent {
|
||||||
|
label 'mac'
|
||||||
|
}
|
||||||
|
environment {
|
||||||
|
CCACHE_BASEDIR = "${env.WORKSPACE}"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
sh 'export'
|
||||||
|
sh 'make distclean'
|
||||||
|
sh 'ccache -z'
|
||||||
|
sh 'make px4_sitl_default'
|
||||||
|
sh 'ccache -s'
|
||||||
|
sh 'make tests'
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
sh 'make distclean'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} // stage px4_sitl_default
|
||||||
|
|
||||||
|
stage('px4_fmu-v5_default (OSX)') {
|
||||||
|
agent {
|
||||||
|
label 'mac'
|
||||||
|
}
|
||||||
|
environment {
|
||||||
|
CCACHE_BASEDIR = "${env.WORKSPACE}"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
sh 'export'
|
||||||
|
sh 'make distclean'
|
||||||
|
sh 'ccache -z'
|
||||||
|
sh 'make px4_fmu-v5_default'
|
||||||
|
sh 'ccache -s'
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
sh 'make distclean'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} // stage px4_fmu-v5_default
|
||||||
|
|
||||||
|
} // parallel
|
||||||
|
} // stage Build
|
||||||
|
|
||||||
|
} // stages
|
||||||
|
environment {
|
||||||
|
CCACHE_CPP2 = '1'
|
||||||
|
CCACHE_DIR = '/tmp/ccache'
|
||||||
|
CI = true
|
||||||
|
}
|
||||||
|
options {
|
||||||
|
buildDiscarder(logRotator(numToKeepStr: '5', artifactDaysToKeepStr: '14'))
|
||||||
|
timeout(time: 60, unit: 'MINUTES')
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue