Skip to content

Commit 70609f0

Browse files
committed
GHA update
1 parent 2a2b2a2 commit 70609f0

1 file changed

Lines changed: 19 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,8 @@ jobs:
8585
cd project2
8686
# install project2.
8787
# --no-build-isolation is needed so that ^^^ installed dsodemo could be found.
88-
# --no-use-pep517 is used to workaround https://github.com/pypa/setuptools/issues/1694 on py36 and py35
8988
python -m pip install -v --no-index -f ../dist wheel # needed by vvv
90-
python -m pip install -v --no-index --no-build-isolation --no-use-pep517 -f ../../dist .
89+
python -m pip install -v --no-index --no-build-isolation -f ../../dist .
9190
cd ../..
9291
python -m dsodemo.cli
9392
python -m nose2 dsodemo
@@ -154,7 +153,7 @@ jobs:
154153
155154
manylinux:
156155
runs-on: ubuntu-latest
157-
name: Test ${{ matrix.pyver }} / ${{ matrix.manylinux }}_${{ matrix.piparch }}
156+
name: ${{ matrix.pyver }} / ${{ matrix.manylinux }}_${{ matrix.piparch }}
158157
strategy:
159158
fail-fast: false
160159
matrix:
@@ -212,6 +211,14 @@ jobs:
212211
piparch: "i686"
213212
pyver: "cp27-cp27mu"
214213

214+
- manylinux: "manylinux2014"
215+
piparch: "i686"
216+
pyver: "cp36-cp36m"
217+
218+
- manylinux: "manylinux2014"
219+
piparch: "i686"
220+
pyver: "cp37-cp37m"
221+
215222
- manylinux: "manylinux2014"
216223
piparch: "x86_64"
217224
pyver: "cp27-cp27m"
@@ -220,6 +227,14 @@ jobs:
220227
piparch: "x86_64"
221228
pyver: "cp27-cp27mu"
222229

230+
- manylinux: "manylinux2014"
231+
piparch: "x86_64"
232+
pyver: "cp36-cp36m"
233+
234+
- manylinux: "manylinux2014"
235+
piparch: "x86_64"
236+
pyver: "cp37-cp37m"
237+
223238
# manylinux2010 doesn't include pip with >= 3.11
224239
- manylinux: "manylinux2010"
225240
piparch: "i686"
@@ -245,6 +260,7 @@ jobs:
245260
#!/bin/sh
246261
set -e -x
247262
ls /opt/python/*/bin/python
263+
ls /opt/python/${{ matrix.pyver }}/bin/python
248264
cd /io
249265
export PATH="/opt/python/${{ matrix.pyver }}/bin:\$PATH"
250266
which python

0 commit comments

Comments
 (0)