Skip to content

Commit f45bed1

Browse files
authored
Add additional pip packages build (#1849)
1 parent 377bb3d commit f45bed1

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

.github/workflows/build.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
runs-on: [self-hosted, macOS, ARM64]
136136
strategy:
137137
matrix:
138-
python: ['3.10', '3.11']
138+
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
139139
steps:
140140
- uses: actions/checkout@v2
141141
- uses: actions/download-artifact@v1
@@ -522,6 +522,22 @@ jobs:
522522
needs: [linux-wheel, macos-wheel, macos-arm64-wheel] #, windows-wheel]
523523
runs-on: ubuntu-20.04
524524
steps:
525+
- uses: actions/download-artifact@v1
526+
with:
527+
name: macOS-arm64-3.7-wheel
528+
path: macOS-arm64-3.7-wheel
529+
- uses: actions/download-artifact@v1
530+
with:
531+
name: macOS-arm64-3.8-wheel
532+
path: macOS-arm64-3.8-wheel
533+
- uses: actions/download-artifact@v1
534+
with:
535+
name: macOS-arm64-3.9-wheel
536+
path: macOS-arm64-3.9-wheel
537+
- uses: actions/download-artifact@v1
538+
with:
539+
name: macOS-arm64-3.10-wheel
540+
path: macOS-arm64-3.10-wheel
525541
- uses: actions/download-artifact@v1
526542
with:
527543
name: macOS-arm64-3.11-wheel
@@ -589,6 +605,10 @@ jobs:
589605
- run: |
590606
set -e -x
591607
mkdir -p wheelhouse
608+
cp macOS-arm64-3.7-wheel/*.whl wheelhouse/
609+
cp macOS-arm64-3.8-wheel/*.whl wheelhouse/
610+
cp macOS-arm64-3.9-wheel/*.whl wheelhouse/
611+
cp macOS-arm64-3.10-wheel/*.whl wheelhouse/
592612
cp macOS-arm64-3.11-wheel/*.whl wheelhouse/
593613
cp macOS-3.7-wheel/*.whl wheelhouse/
594614
cp macOS-3.8-wheel/*.whl wheelhouse/

0 commit comments

Comments
 (0)