holly: Temporarily disable builds of the firmware (as there is no

avr-gcc available)
pull/52/head
Alan Dragomirecký 2021-07-10 00:11:23 +02:00
parent 6aa84cb5d4
commit 9a7b38bcba
No known key found for this signature in database
GPG Key ID: 408E8F08D33F9D03
1 changed files with 2 additions and 1 deletions

View File

@ -52,6 +52,7 @@ pipeline {
stage("Build - ${config.build_type}") {
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
sh """
exit 0 # temporarily disable building (as we don't have avr-gcc in dependencies)
ln -fs /.dependencies
python3 utils/build.py \
--build-type ${config.build_type} \
@ -105,7 +106,7 @@ pipeline {
post {
always {
// archive build products
archiveArtifacts artifacts: 'build/products/*', fingerprint: true
//archiveArtifacts artifacts: 'build/products/*', fingerprint: true
// archive test products
archiveArtifacts artifacts: 'build-test/Testing/Temporary/LastTest.log'
}