File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,11 @@ jobs:
158
158
env : >-
159
159
FILE_ENV="./ci/test/00_setup_env_native_fuzz_with_valgrind.sh"
160
160
161
+ - stage : test
162
+ name : ' x86_64 Linux [GOAL: install] [bionic] [multiprocess]'
163
+ env : >-
164
+ FILE_ENV="./ci/test/00_setup_env_native_multiprocess.sh"
165
+
161
166
- stage : test
162
167
name : ' x86_64 Linux [GOAL: install] [bionic] [no wallet]'
163
168
env : >-
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ #
3
+ # Copyright (c) 2020 The Bitcoin Core developers
4
+ # Distributed under the MIT software license, see the accompanying
5
+ # file COPYING or http://www.opensource.org/licenses/mit-license.php.
6
+
7
+ export LC_ALL=C.UTF-8
8
+
9
+ export CONTAINER_NAME=ci_native_multiprocess
10
+ export PACKAGES=" cmake python3"
11
+ export DEP_OPTS=" MULTIPROCESS=1"
12
+ export GOAL=" install"
13
+ export BITCOIN_CONFIG=" "
14
+ export TEST_RUNNER_ENV=" BITCOIND=bitcoin-node"
Original file line number Diff line number Diff line change 37
37
38
38
if [ " $RUN_FUNCTIONAL_TESTS " = " true" ]; then
39
39
BEGIN_FOLD functional-tests
40
- DOCKER_EXEC LD_LIBRARY_PATH=$DEPENDS_DIR /$HOST /lib test/functional/test_runner.py --ci $MAKEJOBS --tmpdirprefix " ${BASE_SCRATCH_DIR} /test_runner/" --ansi --combinedlogslen=4000 ${TEST_RUNNER_EXTRA} --quiet --failfast
40
+ DOCKER_EXEC LD_LIBRARY_PATH=$DEPENDS_DIR /$HOST /lib ${TEST_RUNNER_ENV} test/functional/test_runner.py --ci $MAKEJOBS --tmpdirprefix " ${BASE_SCRATCH_DIR} /test_runner/" --ansi --combinedlogslen=4000 ${TEST_RUNNER_EXTRA} --quiet --failfast
41
41
END_FOLD
42
42
fi
43
43
You can’t perform that action at this time.
0 commit comments