Skip to content

Commit a2483fd

Browse files
committed
add manylinux targets
1 parent 49b79dd commit a2483fd

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/multibuild.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,28 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: [3.7]
1918
os: [ubuntu-latest, macos-latest]
2019
platform: [x64]
2120
PLAT: [i686, x86_64]
2221
INTERFACE64: ['', '1']
22+
MB_ML_VER: ['', 2010, 2014]
2323
exclude:
24-
- os: macos-latest # macos-10.15
24+
- os: macos-latest
2525
PLAT: i686
26+
- os: macos-latest
27+
MB_ML_VER: 2010
28+
- os: macos-latest
29+
MB_ML_VER: 2014
2630
- PLAT: i686
2731
INTERFACE64: '1'
2832
env:
2933
REPO_DIR: OpenBLAS
3034
OPENBLAS_COMMIT: v0.3.13
35+
MACOSX_DEPLOYMENT_TARGET: 10.9
3136
MB_PYTHON_VERSION: ${{ matrix.python-version }}
3237
TRAVIS_PYTHON_VERSION: ${{ matrix.python-version }}
3338
MB_ML_VER: ${{ matrix.MB_ML_VER }}
39+
INTERFACE64: ${{ matrix.INTERFACE64 }}
3440
BUILD_DIR: ${{ github.workspace }}
3541
SCIPY_WHEELS_NIGHTLY_ACCESS: ${{ secrets.SCIPY_WHEELS_NIGHTLY_ACCESS }}
3642
MULTIBUILD_WHEELS_STAGING_ACCESS: ${{ secrets.MULTIBUILD_WHEELS_STAGING_BUILD }}
@@ -41,10 +47,10 @@ jobs:
4147
with:
4248
submodules: recursive
4349
fetch-depth: 0
44-
- name: Set up Python ${{ matrix.python-version }}
50+
- name: Set up Python 3.8
4551
uses: actions/setup-python@v2
4652
with:
47-
python-version: ${{ matrix.python-version }}
53+
python-version: 3.8
4854
- name: Set extra env
4955
run: |
5056
if [ "macos-latest" == "${{ matrix.os }}" ]; then echo "TRAVIS_OS_NAME=osx" >> $GITHUB_ENV; else echo "TRAVIS_OS_NAME=${{ matrix.os }}" >> $GITHUB_ENV; fi

0 commit comments

Comments
 (0)