From abbbc87c5e9154b7315f70b205d1ee2c15969d66 Mon Sep 17 00:00:00 2001 From: angrybayblade Date: Mon, 6 May 2024 17:17:11 +0530 Subject: [PATCH] fix: pin mac CI runner image --- .github/workflows/main_workflow.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main_workflow.yml b/.github/workflows/main_workflow.yml index c172d58d9d..1ce9b5e440 100644 --- a/.github/workflows/main_workflow.yml +++ b/.github/workflows/main_workflow.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: - os: [ ubuntu-latest, macos-latest, windows-latest ] + os: [ ubuntu-latest, macos-12, windows-latest ] python-version: ["3.10.9"] timeout-minutes: 18 @@ -196,7 +196,7 @@ jobs: strategy: matrix: - os: [ ubuntu-latest, macos-latest, windows-latest ] + os: [ ubuntu-latest, macos-12, windows-latest ] python-version: [ "3.8", "3.9", "3.10.9", "3.11" ] timeout-minutes: 90 @@ -269,8 +269,8 @@ jobs: run: | tox -e packages-py${{ matrix.python-version }}-linux -- -m 'not e2e' - - if: matrix.os == 'macos-latest' - name: Install dependencies (macos-latest) + - if: matrix.os == 'macos-12' + name: Install dependencies (macos-12) run: | pip install tomte[tox]==0.2.17 brew install gcc @@ -302,13 +302,13 @@ jobs: sudo install skaffold /usr/local/bin/ skaffold --help - - if: matrix.os == 'macos-latest' - name: Framework unit tests macos-latest + - if: matrix.os == 'macos-12' + name: Framework unit tests macos-12 run: | tox -e py${{ matrix.python-version }}-darwin -- -m 'not e2e' - - if: matrix.os == 'macos-latest' - name: Packages unit tests macos-latest + - if: matrix.os == 'macos-12' + name: Packages unit tests macos-12 run: | tox -e packages-py${{ matrix.python-version }}-darwin -- -m 'not e2e'