diff options
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 |