Skip to content

Commit 72af3ca

Browse files
committed
ci, cd: bump distro versions
1 parent ebf3172 commit 72af3ca

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ env:
77
jobs:
88
test-linux:
99
name: ${{ matrix.name }}
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111
strategy:
1212
matrix:
1313
include:
14-
- name: ARM [GOAL install] [buster]
14+
- name: ARM [GOAL install] [bullseye]
1515
script-id: arm
1616
- name: Win32
1717
script-id: win32
@@ -21,7 +21,7 @@ jobs:
2121
script-id: linux_i386
2222
- name: x86_64 Linux [GOAL install] [GUI] [focal] [no depends]
2323
script-id: native
24-
- name: x86_64 Linux [GOAL install] [GUI] [bionic] [no depends]
24+
- name: x86_64 Linux [GOAL install] [GUI] [noble] [no depends]
2525
script-id: native_old
2626
- name: x86_64 Linux [ASan] [LSan] [UBSan] [integer] [jammy] [no depends]
2727
script-id: native_asan

cd/00_setup_env.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export HOST=${HOST:-$("$BASE_ROOT_DIR/depends/config.guess")}
3232
# Whether to prefer BusyBox over GNU utilities
3333
export USE_BUSY_BOX=${USE_BUSY_BOX:-false}
3434
export CONTAINER_NAME=${CONTAINER_NAME:-ci_unnamed}
35-
export DOCKER_NAME_TAG=${DOCKER_NAME_TAG:-ubuntu:18.04}
35+
export DOCKER_NAME_TAG=${DOCKER_NAME_TAG:-ubuntu:20.04}
3636
# See man 7 debconf
3737
export DEBIAN_FRONTEND=noninteractive
3838
export CCACHE_SIZE=${CCACHE_SIZE:-300M}

ci/test/00_setup_env.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export RUN_SECURITY_TESTS=${RUN_SECURITY_TESTS:-false}
3737
export TEST_RUNNER_ENV=${TEST_RUNNER_ENV:-}
3838
export RUN_FUZZ_TESTS=${RUN_FUZZ_TESTS:-false}
3939
export CONTAINER_NAME=${CONTAINER_NAME:-ci_unnamed}
40-
export DOCKER_NAME_TAG=${DOCKER_NAME_TAG:-ubuntu:18.04}
40+
export DOCKER_NAME_TAG=${DOCKER_NAME_TAG:-ubuntu:20.04}
4141
# Randomize test order.
4242
# See https://www.boost.org/doc/libs/1_71_0/libs/test/doc/html/boost_test/utf_reference/rt_param_reference/random.html
4343
export BOOST_TEST_RANDOM=${BOOST_TEST_RANDOM:-1}

ci/test/00_setup_env_arm.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if [ -n "$QEMU_USER_CMD" ]; then
1818
fi
1919
export CONTAINER_NAME=ci_arm_linux
2020
# Use debian to avoid 404 apt errors when cross compiling
21-
export DOCKER_NAME_TAG="debian:buster"
21+
export DOCKER_NAME_TAG="debian:bullseye"
2222
export USE_BUSY_BOX=true
2323
export RUN_UNIT_TESTS=true
2424
export RUN_FUNCTIONAL_TESTS=false

ci/test/00_setup_env_native_old.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
export LC_ALL=C.UTF-8
88

99
export CONTAINER_NAME=ci_native_old
10-
export DOCKER_NAME_TAG=ubuntu:18.04
10+
export DOCKER_NAME_TAG=ubuntu:20.04
1111
export PACKAGES="gcc-8 g++-8 libqt5gui5 libqt5core5a qtbase5-dev libqt5dbus5 qttools5-dev qttools5-dev-tools libssl-dev libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-iostreams-dev libboost-test-dev libboost-thread-dev libminiupnpc-dev libqrencode-dev libzip-dev zlib1g zlib1g-dev libcurl4-openssl-dev"
1212
export RUN_UNIT_TESTS=true
1313
# export RUN_FUNCTIONAL_TESTS=false

0 commit comments

Comments
 (0)