Jenkins add eagle_default build with docker credentials (#8442)

This commit is contained in:
Daniel Agar 2017-12-10 03:27:48 -05:00 committed by GitHub
parent 5c54449063
commit a452554bdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 0 deletions

22
Jenkinsfile vendored
View File

@ -148,6 +148,28 @@ pipeline {
}
// snapdragon eagle (posix + qurt)
for (def node_name in ["eagle_default"]) {
builds["${node_name}"] = {
node {
stage("Build Test ${node_name}") {
docker.withRegistry('https://registry.hub.docker.com', 'docker_hub_dagar') {
docker.image("lorenzmeier/px4-dev-snapdragon:2017-10-23").inside {
stage("${node_name}") {
checkout scm
sh "make clean"
sh "ccache -z"
sh "make ${node_name}"
sh "ccache -s"
}
}
}
}
}
}
}
// GCC7 tests
for (def node_name in ["posix_sitl_default", "nuttx_px4fmu-v5_default"]) {
builds["${node_name} (GCC7)"] = {