Skip to content

Commit decbd05

Browse files
committed
ci: stop running check-symbols during builds
Guix runs `check-symbols` during its builds and retains value there as those builds are expected to run on platforms/distros that have that pinned version of glibc or higher (pinned in `manifest.scm` as 2.28 and checked to make sure ABIs present in versions higher than 2.31 aren't used by `symbol-check.py`). There's no reason to do this on regular builds, which aren't expected to be as portable, built in an environment that's much less customizable.
1 parent 5dbe58c commit decbd05

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

ci/dash/build_src.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,3 @@ fi
6363
if [ "$RUN_SECURITY_TESTS" = "true" ]; then
6464
make test-security-check
6565
fi
66-
67-
if [ "$RUN_SYMBOL_TESTS" = "true" ]; then
68-
make $MAKEJOBS -C src check-symbols
69-
fi

ci/test/00_setup_env.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ export RUN_SECURITY_TESTS=${RUN_SECURITY_TESTS:-false}
4646
export TEST_RUNNER_TIMEOUT_FACTOR=${TEST_RUNNER_TIMEOUT_FACTOR:-4}
4747
export TEST_RUNNER_ENV=${TEST_RUNNER_ENV:-}
4848
export RUN_FUZZ_TESTS=${RUN_FUZZ_TESTS:-false}
49-
export RUN_SYMBOL_TESTS=${RUN_SYMBOL_TESTS:-false}
5049
export EXPECTED_TESTS_DURATION_IN_SECONDS=${EXPECTED_TESTS_DURATION_IN_SECONDS:-1000}
5150

5251
export CONTAINER_NAME=${CONTAINER_NAME:-ci_unnamed}

ci/test/00_setup_env_native_qt5.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@ export RUN_UNIT_TESTS="false"
1616
export GOAL="install"
1717
export PREVIOUS_RELEASES_TO_DOWNLOAD="v0.15.0.0 v0.16.1.1 v0.17.0.3 v18.2.2 v19.3.0 v20.0.1"
1818
export BITCOIN_CONFIG="--enable-zmq --with-libs=no --enable-reduce-exports --disable-fuzz-binary LDFLAGS=-static-libstdc++ --with-boost-process"
19-
export RUN_SYMBOL_TESTS="true"

0 commit comments

Comments
 (0)