Skip to content

Commit

Permalink
Add additional pip packages build (#1849)
Browse files Browse the repository at this point in the history
  • Loading branch information
yongtang authored Sep 8, 2023
1 parent 377bb3d commit f45bed1
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
runs-on: [self-hosted, macOS, ARM64]
strategy:
matrix:
python: ['3.10', '3.11']
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v1
Expand Down Expand Up @@ -522,6 +522,22 @@ jobs:
needs: [linux-wheel, macos-wheel, macos-arm64-wheel] #, windows-wheel]
runs-on: ubuntu-20.04
steps:
- uses: actions/download-artifact@v1
with:
name: macOS-arm64-3.7-wheel
path: macOS-arm64-3.7-wheel
- uses: actions/download-artifact@v1
with:
name: macOS-arm64-3.8-wheel
path: macOS-arm64-3.8-wheel
- uses: actions/download-artifact@v1
with:
name: macOS-arm64-3.9-wheel
path: macOS-arm64-3.9-wheel
- uses: actions/download-artifact@v1
with:
name: macOS-arm64-3.10-wheel
path: macOS-arm64-3.10-wheel
- uses: actions/download-artifact@v1
with:
name: macOS-arm64-3.11-wheel
Expand Down Expand Up @@ -589,6 +605,10 @@ jobs:
- run: |
set -e -x
mkdir -p wheelhouse
cp macOS-arm64-3.7-wheel/*.whl wheelhouse/
cp macOS-arm64-3.8-wheel/*.whl wheelhouse/
cp macOS-arm64-3.9-wheel/*.whl wheelhouse/
cp macOS-arm64-3.10-wheel/*.whl wheelhouse/
cp macOS-arm64-3.11-wheel/*.whl wheelhouse/
cp macOS-3.7-wheel/*.whl wheelhouse/
cp macOS-3.8-wheel/*.whl wheelhouse/
Expand Down

0 comments on commit f45bed1

Please sign in to comment.