Skip to content

Commit 1a6b342

Browse files
authored
Merge pull request #52 from dpogue/arm
Add arm64 runners to CI testing matrix
2 parents 9145241 + 72f8696 commit 1a6b342

1 file changed

Lines changed: 11 additions & 8 deletions

File tree

.github/workflows/ci-build.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ jobs:
1010
strategy:
1111
matrix:
1212
cfg:
13-
- { os: ubuntu-22.04, compiler: gcc-9 }
14-
- { os: ubuntu-22.04, compiler: gcc } # GCC 11
15-
- { os: ubuntu-22.04, compiler: clang-11 }
16-
- { os: ubuntu-22.04, compiler: clang-15 }
17-
- { os: ubuntu-24.04, compiler: gcc-14 }
18-
- { os: ubuntu-24.04, compiler: clang } # Clang 18
13+
- { os: ubuntu-22.04, compiler: gcc-9 }
14+
- { os: ubuntu-22.04, compiler: gcc } # GCC 11
15+
- { os: ubuntu-22.04, compiler: clang-11 }
16+
- { os: ubuntu-22.04, compiler: clang-15 }
17+
- { os: ubuntu-24.04, compiler: gcc-14 }
18+
- { os: ubuntu-24.04, compiler: clang } # Clang 18
19+
- { os: ubuntu-24.04-arm, compiler: gcc-14 }
20+
- { os: ubuntu-24.04-arm, compiler: clang } # Clang 18
1921
steps:
2022
- uses: actions/checkout@v4
2123
with:
@@ -63,8 +65,9 @@ jobs:
6365
strategy:
6466
matrix:
6567
cfg:
66-
- { os: windows-2022, msvc: Visual Studio 17 2022, arch: Win32 }
67-
- { os: windows-2022, msvc: Visual Studio 17 2022, arch: x64 }
68+
- { os: windows-2022, msvc: Visual Studio 17 2022, arch: Win32 }
69+
- { os: windows-2022, msvc: Visual Studio 17 2022, arch: x64 }
70+
- { os: windows-11-arm, msvc: Visual Studio 17 2022, arch: ARM64 }
6871
steps:
6972
- uses: actions/checkout@v4
7073
with:

0 commit comments

Comments
 (0)