summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-11-05 08:12:30 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-11-05 08:41:58 -0400
commit164daec6d4f13a9cf02b207156a2cb587ca685b4 (patch)
tree6b60d50495ff300595d75b187aa5984a8bab8dce
parentc47fec8ffc16b79cff3622d1de50ef56a6f1ca10 (diff)
downloadpython-coveragepy-git-164daec6d4f13a9cf02b207156a2cb587ca685b4.tar.gz
temp(build): now try all the arches
-rw-r--r--.github/workflows/kit.yml15
1 files changed, 6 insertions, 9 deletions
diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml
index f25d70f7..39a9c312 100644
--- a/.github/workflows/kit.yml
+++ b/.github/workflows/kit.yml
@@ -29,10 +29,10 @@ jobs:
include:
- os: ubuntu-latest
cibw_arch: x86_64 i686 aarch64
- #- os: windows-latest
- # cibw_arch: x86 AMD64
- #- os: macos-latest
- # cibw_arch: x86_64
+ - os: windows-latest
+ cibw_arch: x86 AMD64
+ - os: macos-latest
+ cibw_arch: x86_64
fail-fast: false
steps:
@@ -56,13 +56,11 @@ jobs:
- name: "Build wheels"
env:
- # Temp: just one Python 3.8 while we work out the CI
- CIBW_BUILD: cp38-manylinux_i686
# Don't build wheels for PyPy.
CIBW_SKIP: pp*
CIBW_ARCHS: ${{ matrix.cibw_arch }}
- # CIBW_BEFORE_TEST: python -m pip install -r requirements/tox.pip
- CIBW_TEST_COMMAND: python -c "from coverage.tracer import CTracer"
+ CIBW_ENVIRONMENT: PIP_DISABLE_PIP_VERSION_CHECK=1
+ CIBW_TEST_COMMAND: python -c "from coverage.tracer import CTracer; print('CTracer OK!')"
run: |
python -m cibuildwheel --output-dir wheelhouse
ls -al wheelhouse/
@@ -102,7 +100,6 @@ jobs:
pypy:
name: "Build PyPy wheels"
- if: ${{ false }} # disable for now, just testing
runs-on: ubuntu-latest
steps:
- name: "Check out the repo"