Skip to content

Commit

Permalink
ci: include all architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
doronz88 committed Nov 28, 2023
1 parent 8852212 commit c0f217e
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 4 deletions.
30 changes: 27 additions & 3 deletions .github/workflows/macos-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,35 @@ jobs:

strategy:
matrix:
python-version: [ 3.8, 3.9, "3.10", 3.11 ]
os: [ macos-latest ]
include:
- os: macos-latest
arch: arm64
python-version: "3.8"
- os: macos-latest
arch: arm64
python-version: "3.9"
- os: macos-latest
arch: arm64
python-version: "3.10"
- os: macos-latest
arch: arm64
python-version: "3.11"

- os: macos-latest
arch: x86_64
python-version: "3.8"
- os: macos-latest
arch: x86_64
python-version: "3.9"
- os: macos-latest
arch: x86_64
python-version: "3.10"
- os: macos-latest
arch: x86_64
python-version: "3.11"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/server-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,17 @@ jobs:

strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
include:
- os: macos-latest
arch: arm64
- os: macos-latest
arch: x86_64
- os: ubuntu-latest
arch: aarch64
- os: ubuntu-latest
arch: i686
- os: ubuntu-latest
arch: x86_64

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

0 comments on commit c0f217e

Please sign in to comment.