From 19bb4a15bb74dcaa618602b7b7879c9ad6681188 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Fri, 6 May 2016 17:50:01 +0200 Subject: [PATCH] release script: don't run the tests For two reasons: 1. They're not functional within rkt 2. They rebuild the binaries dynamically --- scripts/release-with-rkt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release-with-rkt.sh b/scripts/release-with-rkt.sh index c5fac8fc..67702546 100755 --- a/scripts/release-with-rkt.sh +++ b/scripts/release-with-rkt.sh @@ -26,7 +26,7 @@ sudo -E rkt run \ ${FEDORA_IMAGE} \ --exec /bin/bash \ -- -xe -c "\ - ${FEDORA_INSTALL}; cd /opt/src; umask 0022; CGO_ENABLED=0 ./build ${BUILDFLAGS}; ./test || true; \ + ${FEDORA_INSTALL}; cd /opt/src; umask 0022; CGO_ENABLED=0 ./build ${BUILDFLAGS}; \ for format in txz tbz2 tgz; do \ FILENAME=cni-${TAG}.\$format; \ FILEPATH=${RELEASE_DIR}/\$FILENAME; \