We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23b44c2 commit 3d56623Copy full SHA for 3d56623
1 file changed
.github/workflows/ci.yml
@@ -17,6 +17,12 @@ jobs:
17
matrix:
18
os: [ubuntu-latest, windows-latest, macos-latest]
19
build_type: [Debug, Release]
20
+ include:
21
+ # ARM64 Linux builds
22
+ - os: ubuntu-24.04-arm
23
+ build_type: Debug
24
25
+ build_type: Release
26
27
runs-on: ${{ matrix.os }}
28
name: ${{ matrix.os }} (${{ matrix.build_type }})
@@ -29,9 +35,9 @@ jobs:
29
35
uses: actions/cache@v4
30
36
with:
31
37
path: build/_deps
32
- key: deps-${{ runner.os }}-${{ hashFiles('CMakeLists.txt') }}
38
+ key: deps-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('CMakeLists.txt') }}
33
39
restore-keys: |
34
- deps-${{ runner.os }}-
40
+ deps-${{ runner.os }}-${{ runner.arch }}-
41
42
- name: Configure (Unix)
43
if: runner.os != 'Windows'
0 commit comments