aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-04-01 21:54:07 +0800
committerfanquake <fanquake@gmail.com>2021-09-16 16:01:31 +0800
commit252d1a70fb452893efe4ab64298139eb08d8ac98 (patch)
tree66bd66b2f06db9d7e3ca4b12454aa3d06751bba2 /ci
parentec7ec69c7bcaea2b301991066a06b183b50ebe11 (diff)
downloadbitcoin-252d1a70fb452893efe4ab64298139eb08d8ac98.tar.xz
ci: use Debian Bullseye in ARM CI
This works around an issue when trying to use `std::filesystem::remove_all` with the ARM GCC on Buster. Has been split out of #20744. See comments starting here: https://github.com/bitcoin/bitcoin/pull/20744#issuecomment-810279549. Also: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93201.
Diffstat (limited to 'ci')
-rwxr-xr-xci/test/00_setup_env_arm.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/00_setup_env_arm.sh b/ci/test/00_setup_env_arm.sh
index 8d2b70e549..93f8017d98 100755
--- a/ci/test/00_setup_env_arm.sh
+++ b/ci/test/00_setup_env_arm.sh
@@ -18,7 +18,7 @@ if [ -n "$QEMU_USER_CMD" ]; then
fi
export CONTAINER_NAME=ci_arm_linux
# Use debian to avoid 404 apt errors when cross compiling
-export DOCKER_NAME_TAG="debian:buster"
+export DOCKER_NAME_TAG="debian:bullseye"
export USE_BUSY_BOX=true
export RUN_UNIT_TESTS=true
export RUN_FUNCTIONAL_TESTS=false