osmith has uploaded this change for review.
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
To view, visit change 42580. To unsubscribe, or for help writing mail filters, visit settings.