diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 03:32:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 03:32:49 +0000 |
commit | 8053187731ae8e3eb368d8360989cf5fd6eed9f7 (patch) | |
tree | 32bada84ff5d7460cdf3934fcbdbe770d6afe4cd /ci/local.sh | |
parent | Initial commit. (diff) | |
download | rnp-8053187731ae8e3eb368d8360989cf5fd6eed9f7.tar.xz rnp-8053187731ae8e3eb368d8360989cf5fd6eed9f7.zip |
Adding upstream version 0.17.0.upstream/0.17.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ci/local.sh')
-rwxr-xr-x | ci/local.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ci/local.sh b/ci/local.sh new file mode 100755 index 0000000..db687ff --- /dev/null +++ b/ci/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 |