Browse Source

Jenkins mac compile run tests separately

sbg
Daniel Agar 6 years ago
parent
commit
986ff96c3e
  1. 22
      .ci/Jenkinsfile-compile_mac

22
.ci/Jenkinsfile-compile_mac

@ -21,7 +21,6 @@ pipeline { @@ -21,7 +21,6 @@ pipeline {
sh 'ccache -z'
sh 'make px4_sitl_default'
sh 'ccache -s'
sh 'make tests'
}
post {
always {
@ -51,6 +50,27 @@ pipeline { @@ -51,6 +50,27 @@ pipeline {
}
} // stage px4_fmu-v5_default
stage('sitl tests (OSX)') {
agent {
label 'mac'
}
environment {
CCACHE_BASEDIR = "${env.WORKSPACE}"
}
steps {
sh 'export'
sh 'make distclean'
sh 'ccache -z'
sh 'make tests'
sh 'ccache -s'
}
post {
always {
sh 'make distclean'
}
}
} // stage sitl tests
} // parallel
} // stage Build

Loading…
Cancel
Save