Skip to content
This repository has been archived by the owner on Jan 3, 2025. It is now read-only.

Commit

Permalink
👷 Trying to add M1 processor build support
Browse files Browse the repository at this point in the history
  • Loading branch information
mnixry authored Feb 3, 2024
1 parent e67e80e commit 931e38f
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@ jobs:

strategy:
matrix:
os: [ubuntu, macos, windows]
os:
- ubuntu-latest
- macos-latest
- windows-latest
- macos-14

defaults:
run:
shell: bash

env:
MATRIX_OS: ${{ matrix.os }}
SCCACHE_GHA_ENABLED: true

runs-on: ${{ matrix.os }}-latest
runs-on: ${{ matrix.os }}

steps:
- name: Get latest release
Expand Down Expand Up @@ -89,17 +92,18 @@ jobs:

strategy:
matrix:
os: [ubuntu, macos, windows]
os:
- ubuntu-latest
- macos-latest
- windows-latest
- macos-14
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]

defaults:
run:
shell: bash

env:
MATRIX_OS: ${{ matrix.os }}

runs-on: ${{ matrix.os }}-latest
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -155,14 +159,18 @@ jobs:

strategy:
matrix:
os: [ubuntu, macos, windows]
os:
- ubuntu-latest
- macos-latest
- windows-latest
- macos-14
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]

defaults:
run:
shell: bash

runs-on: ${{ matrix.os }}-latest
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 931e38f

Please sign in to comment.