From c580767f33b64b602b5157a6b0ebee118a02fcdc Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Mon, 23 Sep 2024 18:03:38 +0300 Subject: [PATCH] Add Intel macOS runner --- .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 eef261e9a..8eabfad4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,8 +115,16 @@ jobs: run: poetry run .\install\windows\build-app.bat macOS: - runs-on: macos-latest + name: "macOS (${{ matrix.arch }})" + runs-on: ${{ matrix.runner }} needs: download-tessdata + 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: