holly: Temporarily disable builds of the firmware (as there is no
avr-gcc available)pull/52/head
parent
6aa84cb5d4
commit
9a7b38bcba
|
|
@ -52,6 +52,7 @@ pipeline {
|
||||||
stage("Build - ${config.build_type}") {
|
stage("Build - ${config.build_type}") {
|
||||||
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
|
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
|
||||||
sh """
|
sh """
|
||||||
|
exit 0 # temporarily disable building (as we don't have avr-gcc in dependencies)
|
||||||
ln -fs /.dependencies
|
ln -fs /.dependencies
|
||||||
python3 utils/build.py \
|
python3 utils/build.py \
|
||||||
--build-type ${config.build_type} \
|
--build-type ${config.build_type} \
|
||||||
|
|
@ -105,7 +106,7 @@ pipeline {
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
// archive build products
|
// archive build products
|
||||||
archiveArtifacts artifacts: 'build/products/*', fingerprint: true
|
//archiveArtifacts artifacts: 'build/products/*', fingerprint: true
|
||||||
// archive test products
|
// archive test products
|
||||||
archiveArtifacts artifacts: 'build-test/Testing/Temporary/LastTest.log'
|
archiveArtifacts artifacts: 'build-test/Testing/Temporary/LastTest.log'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue