Skip to content

Commit

Permalink
ci: add mingw arm64 build
Browse files Browse the repository at this point in the history
Signed-off-by: Rachel Powers <[email protected]>
  • Loading branch information
Ryex committed Oct 31, 2024
1 parent ba07a13 commit 2fb4b35
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,16 @@ jobs:
- os: windows-2022
name: "Windows-MinGW-w64"
msystem: clang64
msystem_arch: x86_64
vcvars_arch: "amd64_x86"

- os: windows-2022
name: "Windows-MinGW-arm64"
msystem: clangarm64
msystem_arch: aarch64
architecture: "arm64"
vcvars_arch: "amd64_arm64"

- os: windows-2022
name: "Windows-MSVC"
msystem: ""
Expand Down Expand Up @@ -176,9 +184,9 @@ jobs:
uses: actions/[email protected]
with:
path: '${{ github.workspace }}\.ccache'
key: ${{ matrix.os }}-mingw-w64-ccache-${{ github.run_id }}
key: ${{ matrix.os }}-mingw-w64-${{ matrix.msystem_arch }}-ccache-${{ github.run_id }}
restore-keys: |
${{ matrix.os }}-mingw-w64-ccache
${{ matrix.os }}-mingw-w64-${{ matrix.msystem_arch }}-ccache
- name: Setup ccache (Windows MinGW-w64)
if: runner.os == 'Windows' && matrix.msystem != '' && inputs.build_type == 'Debug'
Expand Down

0 comments on commit 2fb4b35

Please sign in to comment.