osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ccid-firmware/+/42580?usp=email )
Change subject: contrib/jenkins: add SKIP_FIRMWARE_CLEAN argument ......................................................................
contrib/jenkins: add SKIP_FIRMWARE_CLEAN argument
If this is set, then don't clean the firmware at the end. This is needed to store the built firmware as artifact in jenkins, for passing it along to another job.
Related: SYS#7963 Change-Id: I9e2342b8111645ef5d3b7bf4ac364ca592aa600b --- M contrib/jenkins.sh 1 file changed, 5 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ccid-firmware refs/changes/80/42580/1
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh index 9462cc3..bd90e45 100755 --- a/contrib/jenkins.sh +++ b/contrib/jenkins.sh @@ -99,6 +99,8 @@ fi fi
-echo -echo "=============== FIRMWARE CLEAN ==============" -make clean +if [ -z "$SKIP_FIRMWARE_CLEAN" ]; then + echo + echo "=============== FIRMWARE CLEAN ==============" + make clean +fi