mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-29 02:12:36 +02:00
ci: Add Intel macOS runner
GitHub provides an Intel macOS runner as `macos-13`. Add it alongside our M1 macOS runner (`macos-latest`), in order to cover all of our target environments.
This commit is contained in:
parent
95660c3ec7
commit
8d856ff4c3
1 changed files with 9 additions and 1 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -90,7 +90,15 @@ jobs:
|
||||||
run: poetry run .\install\windows\build-app.bat
|
run: poetry run .\install\windows\build-app.bat
|
||||||
|
|
||||||
macOS:
|
macOS:
|
||||||
runs-on: macos-latest
|
name: "macOS (${{ matrix.arch }})"
|
||||||
|
runs-on: ${{ matrix.runner }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- runner: macos-latest # CPU type: Apple Silicon (M1)
|
||||||
|
arch: arch64
|
||||||
|
- runner: macos-13 # CPU type: Intel x86_64
|
||||||
|
arch: x86_64
|
||||||
env:
|
env:
|
||||||
DUMMY_CONVERSION: 1
|
DUMMY_CONVERSION: 1
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in a new issue