Skip to content

Commit

Permalink
Udate github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
joshlk committed Oct 3, 2024
1 parent ec3f786 commit 61826a8
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
build_wheels:
name: ${{ matrix.os }}-${{ matrix.architectures }}-${{ matrix.python-version }}
name: ${{ matrix.os }}-${{ matrix.architectures }}-py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -25,13 +25,15 @@ jobs:
include:
# Linux builds
- os: ubuntu-latest
architectures: "x86_64 aarch64"
architectures: "x86_64"
- os: ubuntu-latest
architectures: "aarch64"
# Windows builds (x86_64 only)
- os: windows-latest
architectures: "AMD64"
architectures: "x86_64"
# macOS Intel
- os: macos-13
architectures: "x86_64 arm64"
architectures: "x86_64"
# macOS Apple silicon
- os: macos-14
architectures: "arm64"
Expand All @@ -58,7 +60,7 @@ jobs:

# Test
#CIBW_BEFORE_TEST: pip install -r requirements-dev.txt
CIBW_TEST_COMMAND: pytest {package}/tests
CIBW_TEST_COMMAND: "PYTHONPATH=$(pwd) pytest {package}/tests"

- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 61826a8

Please sign in to comment.