Skip to content

Commit f6426ca

Browse files
authored
Switch CI pipeline bookworm:gcc-13 from arm64 to amd64 (#5779)
1 parent e5f7a84 commit f6426ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/strategy-matrix/generate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def generate_strategy_matrix(all: bool, config: Config) -> list:
4545
# Only generate a subset of configurations in PRs.
4646
if not all:
4747
# Debian:
48-
# - Bookworm using GCC 13: Release and Unity on linux/arm64, set
48+
# - Bookworm using GCC 13: Release and Unity on linux/amd64, set
4949
# the reference fee to 500.
5050
# - Bookworm using GCC 15: Debug and no Unity on linux/amd64, enable
5151
# code coverage (which will be done below).
@@ -57,7 +57,7 @@ def generate_strategy_matrix(all: bool, config: Config) -> list:
5757
if os['distro_name'] == 'debian':
5858
skip = True
5959
if os['distro_version'] == 'bookworm':
60-
if f'{os['compiler_name']}-{os['compiler_version']}' == 'gcc-13' and build_type == 'Release' and '-Dunity=ON' in cmake_args and architecture['platform'] == 'linux/arm64':
60+
if f'{os['compiler_name']}-{os['compiler_version']}' == 'gcc-13' and build_type == 'Release' and '-Dunity=ON' in cmake_args and architecture['platform'] == 'linux/amd64':
6161
cmake_args = f'-DUNIT_TEST_REFERENCE_FEE=500 {cmake_args}'
6262
skip = False
6363
if f'{os['compiler_name']}-{os['compiler_version']}' == 'gcc-15' and build_type == 'Debug' and '-Dunity=OFF' in cmake_args and architecture['platform'] == 'linux/amd64':

0 commit comments

Comments
 (0)