Skip to content

Commit

Permalink
chore(ci): remove macos from ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ChieloNewctle committed May 9, 2024
1 parent 6badcbb commit c2742a5
Showing 1 changed file with 1 addition and 33 deletions.
34 changes: 1 addition & 33 deletions .github/workflows/ci_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,38 +153,6 @@ jobs:
pip install --pre "mtc_token_healing[test]" --find-links dist --force-reinstall
pytest --import-mode=importlib
macos:
runs-on: macos-latest
strategy:
matrix:
target: [x86_64, aarch64]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
working-directory: python
target: ${{ matrix.target }}
args: --release --out dist --interpreter 3.9 pypy3.9 pypy3.10
sccache: true
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-macos-${{ matrix.target }}
path: python/dist
- name: pytest
if: ${{ !startsWith(matrix.target, 'aarch64') }}
shell: bash
run: |
set -e
pip install --pre "mtc_token_healing[test]" --find-links dist --force-reinstall
pytest --import-mode=importlib
sdist:
needs: [test]
runs-on: ubuntu-latest
Expand All @@ -208,7 +176,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [test, format, rustfmt, linux, windows, macos, sdist]
needs: [test, format, rustfmt, linux, windows, sdist]
permissions:
# Used to upload release artifacts
contents: write
Expand Down

0 comments on commit c2742a5

Please sign in to comment.