aboutsummaryrefslogtreecommitdiff
path: root/ci/test/00_setup_env_i686_multiprocess.sh
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-11-28 13:51:18 +0100
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-11-29 15:13:16 +0100
commitfad82fea2bef88c9f11e25ca43c7886a2b9b5da2 (patch)
treefcc56d56a76d82aff737f22504b2341273e19ec7 /ci/test/00_setup_env_i686_multiprocess.sh
parentfafcee48748d4a4ff229ae94d2bc3a73c5c1db22 (diff)
ci: Reduce use of bash -c
It is confusing to treat commands as a single string. This change is also required to support paths and strings with spaces in them in the future. This requires replacing TEST_RUNNER_ENV with a global export, because it no longer works. See: ```bash $ export ENV="A=1" && $ENV ls bash: A=1: command not found... ``` Or in the CI task: + DIR_UNIT_TEST_DATA=/ci_container_base/ci/scratch/qa-assets/unit_test_data/ + LD_LIBRARY_PATH=/ci_container_base/depends/i686-pc-linux-gnu/lib + BITCOIND=bitcoin-node make -j10 check VERBOSE=1 /ci_container_base/ci/test/03_test_script.sh: line 166: BITCOIND=bitcoin-node: command not found https://github.com/bitcoin/bitcoin/pull/28954/checks?check_run_id=19096858944 https://cirrus-ci.com/task/6718317604372480
Diffstat (limited to 'ci/test/00_setup_env_i686_multiprocess.sh')
-rwxr-xr-xci/test/00_setup_env_i686_multiprocess.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/00_setup_env_i686_multiprocess.sh b/ci/test/00_setup_env_i686_multiprocess.sh
index 647f4103e2..7b46835b57 100755
--- a/ci/test/00_setup_env_i686_multiprocess.sh
+++ b/ci/test/00_setup_env_i686_multiprocess.sh
@@ -14,4 +14,4 @@ export DEP_OPTS="DEBUG=1 MULTIPROCESS=1"
export GOAL="install"
export BITCOIN_CONFIG="--enable-debug CC='clang -m32' CXX='clang++ -m32' \
LDFLAGS='--rtlib=compiler-rt -lgcc_s' CPPFLAGS='-DBOOST_MULTI_INDEX_ENABLE_SAFE_MODE'"
-export TEST_RUNNER_ENV="BITCOIND=bitcoin-node"
+export BITCOIND=bitcoin-node # Used in functional tests