From 8d856ff4c3e7a58f0521a2842301e39f6579521f Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Mon, 23 Sep 2024 18:03:38 +0300 Subject: [PATCH] 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. --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8c4ffe..637f1eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: