Skip to content

Commit

Permalink
platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Nov 13, 2023
1 parent fffd816 commit 923d895
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 93 deletions.
44 changes: 0 additions & 44 deletions .github/workflows/wheels-linux.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/wheels-macos.yml

This file was deleted.

35 changes: 30 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,33 @@ permissions:
contents: read

jobs:
macos:
uses: ./.github/workflows/wheels-macos.yml

linux:
uses: ./.github/workflows/wheels-linux.yml
build:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
env:
PLAT: ${{ matrix.platform }}
MB_PYTHON_VERSION: ${{ matrix.python }}
TRAVIS_OS_NAME: "osx"
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Build Wheel
run: |
python3 -m pip install cibuildwheel
python3 -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v3
with:
name: ${{ inputs.artifacts-name }}
path: wheelhouse/*.whl
# Uncomment to get SSH access for testing
# - name: Setup tmate session
# if: failure()
# uses: mxschmitt/action-tmate@v3

0 comments on commit 923d895

Please sign in to comment.