Skip to content

Commit

Permalink
Fix crossenv build quirks
Browse files Browse the repository at this point in the history
  • Loading branch information
virtuald committed Jan 7, 2022
1 parent 27b3902 commit 479f2b7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,17 @@ jobs:
submodules: true

- name: Install build
run: /build/venv/bin/cross-pip --disable-pip-version-check install build
run: /build/venv/bin/build-pip --disable-pip-version-check install build

- name: Build wheel
run: /build/venv/bin/cross-python -m build --wheel
run: /build/venv/bin/build-python -m build --wheel

- name: Install
working-directory: dist
run: /build/venv/bin/cross-pip --disable-pip-version-check install *.whl
run: |
# install to both cross and build in case things get mixed up
/build/venv/bin/build-pip --disable-pip-version-check install *.whl
/build/venv/bin/cross-pip --disable-pip-version-check install *.whl
- name: Build cross wheel
env:
Expand Down

0 comments on commit 479f2b7

Please sign in to comment.