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:
Alex Pyrgiotis 2024-09-23 18:03:38 +03:00
parent 95660c3ec7
commit 8d856ff4c3
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -90,7 +90,15 @@ jobs:
run: poetry run .\install\windows\build-app.bat
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:
DUMMY_CONVERSION: 1
steps: