Skip to content

Commit

Permalink
ci: use Debian Bullseye in ARM CI
Browse files Browse the repository at this point in the history
This works around an issue when trying to use `std::filesystem::remove_all`
with the ARM GCC on Buster. Has been split out of bitcoin#20744.

See comments starting here:
bitcoin#20744 (comment).
Also: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93201.
  • Loading branch information
fanquake committed Sep 16, 2021
1 parent ec7ec69 commit 252d1a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ task:
- python test\functional\test_runner.py --ci --quiet --combinedlogslen=4000 --jobs=4 --timeout-factor=8 rpc_help feature_config_args rpc_signer feature_presegwit_node_upgrade "tool_wallet.py --descriptors" --failfast # TODO enable '--extended' and remove cherry-picked test list

task:
name: 'ARM [unit tests, no functional tests] [buster]'
name: 'ARM [unit tests, no functional tests] [bullseye]'
<< : *GLOBAL_TASK_TEMPLATE
arm_container:
image: debian:buster
image: debian:bullseye
cpu: 2
memory: 8G
env:
Expand Down
2 changes: 1 addition & 1 deletion ci/test/00_setup_env_arm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 252d1a7

Please sign in to comment.