laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ccid-firmware/+/39792?usp=email )
Change subject: contrib/jenkins.sh: Fix LATEST_BIN variable setting for tagged versions ...................................................................... contrib/jenkins.sh: Fix LATEST_BIN variable setting for tagged versions sysmoOCTSIM-*-*.bin only works if the build is not a version that was just tagged. In that case the file name is sysmoOCTSIM-0.3.bin which doesn't match the above pattern as it has no git hash appended. Change-Id: I4927f24407a25c87ca59f6230d64d24761558c18 --- M contrib/jenkins.sh 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ccid-firmware refs/changes/92/39792/1 diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh index 961acf1..9111965 100755 --- a/contrib/jenkins.sh +++ b/contrib/jenkins.sh @@ -71,7 +71,7 @@ [ftp.osmocom.org]:48 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK8iivY70EiR5NiGChV39gRLjNpC8lvu1ZdHtdMw2zuX EOF SSH_COMMAND="ssh -o 'UserKnownHostsFile=/build/known_hosts' -p 48" - LATEST_BIN="$(cd "$TOPDIR"/sysmoOCTSIM/gcc/; ls -1 sysmoOCTSIM-*-*.bin)" + LATEST_BIN="$(cd "$TOPDIR"/sysmoOCTSIM/gcc/; ls -1 sysmoOCTSIM-*.bin)" echo "LATEST_BIN: $LATEST_BIN" -- To view, visit https://gerrit.osmocom.org/c/osmo-ccid-firmware/+/39792?usp=email To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email Gerrit-MessageType: newchange Gerrit-Project: osmo-ccid-firmware Gerrit-Branch: master Gerrit-Change-Id: I4927f24407a25c87ca59f6230d64d24761558c18 Gerrit-Change-Number: 39792 Gerrit-PatchSet: 1 Gerrit-Owner: laforge <lafo...@osmocom.org>