Skip to content

Commit 6a93658

Browse files
committed
ci: remove RUN_SECURITY_TESTS
We no-longer run any security/syymbol checks in the CI, and doubt we will in future (if we do, it'll be via Guix, where this var would be redundant in any case). The CI environment doesn't (exactly) match the release build environment (and is semi-regularly changing), and the binaries produced in the CI don't match how we build release binaries, so there is no point trying to run these checks, especially as we add more involved tests, i.e #26953.
1 parent a75c77e commit 6a93658

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

ci/test/00_setup_env.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ export USE_BUSY_BOX=${USE_BUSY_BOX:-false}
3737
export RUN_UNIT_TESTS=${RUN_UNIT_TESTS:-true}
3838
export RUN_FUNCTIONAL_TESTS=${RUN_FUNCTIONAL_TESTS:-true}
3939
export RUN_TIDY=${RUN_TIDY:-false}
40-
export RUN_SECURITY_TESTS=${RUN_SECURITY_TESTS:-false}
4140
# By how much to scale the test_runner timeouts (option --timeout-factor).
4241
# This is needed because some ci machines have slow CPU or disk, so sanitizers
4342
# might be slow or a reindex might be waiting on disk IO.

ci/test/06_script_b.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,6 @@ if [ "${RUN_TIDY}" = "true" ]; then
210210
git --no-pager diff
211211
fi
212212

213-
if [ "$RUN_SECURITY_TESTS" = "true" ]; then
214-
make test-security-check
215-
fi
216-
217213
if [ "$RUN_FUZZ_TESTS" = "true" ]; then
218214
bash -c "LD_LIBRARY_PATH=${DEPENDS_DIR}/${HOST}/lib test/fuzz/test_runner.py ${FUZZ_TESTS_CONFIG} $MAKEJOBS -l DEBUG ${DIR_FUZZ_IN}"
219215
fi

0 commit comments

Comments
 (0)