diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 19:22:08 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 19:22:08 +0000 |
commit | 55fffa809312f6c0ae40528fd1ee66b7559c4650 (patch) | |
tree | bb6b3e63b35220d36bdc654f784a985e88ba1cd2 /ci-legacy/local.sh | |
parent | Releasing progress-linux version 0.17.0-3~progress7.99u1. (diff) | |
download | rnp-55fffa809312f6c0ae40528fd1ee66b7559c4650.tar.xz rnp-55fffa809312f6c0ae40528fd1ee66b7559c4650.zip |
Merging upstream version 0.17.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ci-legacy/local.sh')
-rwxr-xr-x | ci-legacy/local.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ci-legacy/local.sh b/ci-legacy/local.sh new file mode 100755 index 0000000..db687ff --- /dev/null +++ b/ci-legacy/local.sh @@ -0,0 +1,16 @@ +#!/bin/bash +set -eux + +: "${GPG_VERSION:=stable}" +: "${BUILD_MODE:=normal}" + +rsync -a /usr/local/rnp /tmp +sudo -iu travis bash -x <<EOF +cd /tmp/rnp +env ${CXX:+CXX=$CXX} \ + ${CC:+CC=$CC} \ + GPG_VERSION=$GPG_VERSION \ + BUILD_MODE=$BUILD_MODE \ + ${RNP_TESTS:+RNP_TESTS=$RNP_TESTS} \ + ci/run.sh +EOF |