Skip to content
Snippets Groups Projects
Commit 986ff96c authored by Daniel Agar's avatar Daniel Agar
Browse files

Jenkins mac compile run tests separately

parent 071ec7d7
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
}
} // 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment