Skip to content

Commit 7e37329

Browse files
author
MarcoFalke
committed
Merge #20315: travis: Remove s390x build
fa2c3c0 ci: Set LC_ALL=C to allow running the s390x tests in qemu (MarcoFalke) fac0517 travis: Remove s390x build (MarcoFalke) Pull request description: This has been discussed in the last meeting. Refer to the commit body for more details. Top commit has no ACKs. Tree-SHA512: 8e0455286ce41c95ed2e5eb624ac534251bb4a321f13d26d14356497e0c39f841372e166373ffd4a0a9fa379636c2cfb535bd92534fff427cdcb827354e66b6c
2 parents 4727c1c + fa2c3c0 commit 7e37329

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

.travis.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,6 @@ jobs:
7272
FILE_ENV="./ci/test/00_setup_env_arm.sh"
7373
QEMU_USER_CMD=""
7474
75-
- stage: test
76-
name: 'S390x [GOAL: install] [buster] [unit tests, functional tests]'
77-
arch: s390x # Can disable QEMU_USER_CMD and run the tests natively without qemu
78-
env: >-
79-
FILE_ENV="./ci/test/00_setup_env_s390x.sh"
80-
QEMU_USER_CMD=""
81-
8275
- stage: test
8376
name: 'Win64 [GOAL: deploy] [unit tests, no gui, no boost::process, no functional tests]'
8477
env: >-

ci/test/00_setup_env_s390x.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ fi
2020
export CONTAINER_NAME=ci_s390x
2121
export DOCKER_NAME_TAG="debian:buster"
2222
export RUN_UNIT_TESTS=true
23+
export TEST_RUNNER_ENV="LC_ALL=C"
2324
export RUN_FUNCTIONAL_TESTS=true
2425
export GOAL="install"
2526
export BITCOIN_CONFIG="--enable-reduce-exports --with-incompatible-bdb --with-boost-process"

ci/test/06_script_b.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ fi
2323

2424
if [ "$RUN_UNIT_TESTS" = "true" ]; then
2525
BEGIN_FOLD unit-tests
26-
DOCKER_EXEC DIR_UNIT_TEST_DATA=${DIR_UNIT_TEST_DATA} LD_LIBRARY_PATH=$DEPENDS_DIR/$HOST/lib make $MAKEJOBS check VERBOSE=1
26+
DOCKER_EXEC ${TEST_RUNNER_ENV} DIR_UNIT_TEST_DATA=${DIR_UNIT_TEST_DATA} LD_LIBRARY_PATH=$DEPENDS_DIR/$HOST/lib make $MAKEJOBS check VERBOSE=1
2727
END_FOLD
2828
fi
2929

3030
if [ "$RUN_UNIT_TESTS_SEQUENTIAL" = "true" ]; then
3131
BEGIN_FOLD unit-tests-seq
32-
DOCKER_EXEC DIR_UNIT_TEST_DATA=${DIR_UNIT_TEST_DATA} LD_LIBRARY_PATH=$DEPENDS_DIR/$HOST/lib "${BASE_BUILD_DIR}/bitcoin-*/src/test/test_bitcoin*" --catch_system_errors=no -l test_suite
32+
DOCKER_EXEC ${TEST_RUNNER_ENV} DIR_UNIT_TEST_DATA=${DIR_UNIT_TEST_DATA} LD_LIBRARY_PATH=$DEPENDS_DIR/$HOST/lib "${BASE_BUILD_DIR}/bitcoin-*/src/test/test_bitcoin*" --catch_system_errors=no -l test_suite
3333
END_FOLD
3434
fi
3535

0 commit comments

Comments
 (0)