From 9a7b38bcba05858f850f8268c1729afe8295c60c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alan=20Dragomirecky=CC=81?= Date: Sat, 10 Jul 2021 00:11:23 +0200 Subject: [PATCH] holly: Temporarily disable builds of the firmware (as there is no avr-gcc available) --- utils/holly/Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/holly/Jenkinsfile b/utils/holly/Jenkinsfile index cc2d03d..e22bf7b 100644 --- a/utils/holly/Jenkinsfile +++ b/utils/holly/Jenkinsfile @@ -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' }