diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 19:22:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 19:22:07 +0000 |
commit | b842d8449361bc56b30d781084fa829824607082 (patch) | |
tree | 772be8bd6ac3d7c5bc2709b6c5859c5aff7ed4b2 /ci/env-common.inc.sh | |
parent | Adding debian version 0.17.0-3. (diff) | |
download | rnp-b842d8449361bc56b30d781084fa829824607082.tar.xz rnp-b842d8449361bc56b30d781084fa829824607082.zip |
Merging upstream version 0.17.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ci/env-common.inc.sh')
-rw-r--r-- | ci/env-common.inc.sh | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/ci/env-common.inc.sh b/ci/env-common.inc.sh deleted file mode 100644 index 11712f0..0000000 --- a/ci/env-common.inc.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash - -: "${LOCAL_BUILDS:=$HOME/local-builds}" -: "${LOCAL_INSTALLS:=$HOME/local-installs}" -: "${BOTAN_INSTALL:=$LOCAL_INSTALLS/botan-install}" -: "${JSONC_INSTALL:=$LOCAL_INSTALLS/jsonc-install}" -: "${GPG_INSTALL:=$LOCAL_INSTALLS/gpg-install}" -: "${RNP_INSTALL:=$LOCAL_INSTALLS/rnp-install}" -: "${CPU:=}" -: "${SUDO:=}" - -for var in LOCAL_BUILDS LOCAL_INSTALLS BOTAN_INSTALL JSONC_INSTALL \ - GPG_INSTALL RNP_INSTALL CPU SUDO; do - export "${var?}" -done - -: "${BUILD_MODE:=normal}" - -if [ "$BUILD_MODE" = "sanitize" ]; then - export CXX=clang++ - export CC=clang -fi - -BOTAN_MODULES=$(<ci/botan-modules tr '\n' ',') - -export BOTAN_MODULES - -# Don't clean up tempdirs when in CI runners to save time. Unset to disable. -export RNP_KEEP_TEMP=1 |