File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
.github/scripts/strategy-matrix Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ def generate_strategy_matrix(all: bool, config: Config) -> list:
45
45
# Only generate a subset of configurations in PRs.
46
46
if not all :
47
47
# 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
49
49
# the reference fee to 500.
50
50
# - Bookworm using GCC 15: Debug and no Unity on linux/amd64, enable
51
51
# code coverage (which will be done below).
@@ -57,7 +57,7 @@ def generate_strategy_matrix(all: bool, config: Config) -> list:
57
57
if os ['distro_name' ] == 'debian' :
58
58
skip = True
59
59
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 ' :
61
61
cmake_args = f'-DUNIT_TEST_REFERENCE_FEE=500 { cmake_args } '
62
62
skip = False
63
63
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' :
You can’t perform that action at this time.
0 commit comments