lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ccid-firmware/+/42676?usp=email )
Change subject: jenkins.sh: pin libosmocore version to current version v1.14 ......................................................................
jenkins.sh: pin libosmocore version to current version v1.14
osmo-ccid-firmware isn't using much of libosmocore. Use a specific version instead of the current master. This also improve reproducible builds, because the jenkins would otherwise use the current master commit to build it.
Related: OS#6987 Change-Id: I678957099348e067d62a4abd04cbdac822463cf4 --- M contrib/jenkins.sh 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: laforge: Looks good to me, but someone else must approve Jenkins Builder: Verified osmith: Looks good to me, approved
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh index bd90e45..ec361fa 100755 --- a/contrib/jenkins.sh +++ b/contrib/jenkins.sh @@ -18,7 +18,7 @@
echo echo "=============== libosmocore host build ===========" -osmo-build-dep.sh libosmocore "" --disable-doxygen +osmo-build-dep.sh libosmocore "1.14.0" --disable-doxygen export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH" export LD_LIBRARY_PATH="$inst/lib" export PATH="$inst/bin:$PATH" @@ -36,7 +36,7 @@ echo "=============== libosmocore cross-build ===========" mkdir -p "$deps" cd "$deps" -osmo-deps.sh libosmocore master +osmo-deps.sh libosmocore 1.14.0 cd libosmocore
CFLAGS="-Os -g3 -ffunction-sections -fdata-sections -nostartfiles -nodefaultlibs"