Skip to content

Commit

Permalink
another one
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant committed Oct 16, 2024
1 parent bbb58e2 commit 0da0a69
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,19 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-12, windows-2019]
architecture: ['x64']
architecture: ["x64"]
linux_archs: ["auto s390x"]
include:
- os: windows-2019
architecture: 'x86'
architecture: "x86"
skip: "*2*win* *win_amd64"
environment_windows: INCLUDE="C:/Program Files (x86)/Snappy/include" LIB="C:/Program Files (x86)/Snappy/lib"
- os: windows-2019
architecture: 'x64'
architecture: "x64"
skip: "*2*win* *win32"
environment_windows: INCLUDE="C:/Program Files/Snappy/include" LIB="C:/Program Files/Snappy/lib"
- os: ubuntu-20.04
architecture: 'x64'
architecture: "x64"
linux_archs: aarch64 ppc64le

name: Python ${{ matrix.os }}
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
uses: docker/setup-qemu-action@v1
with:
platforms: all

- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v1.0.2
Expand All @@ -108,15 +108,15 @@ jobs:
run: |
python -m pip wheel -w ./wheelhouse .
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl
name: wheels

upload:
runs-on: ubuntu-latest
name: upload wheels
needs: ['sdist', 'build']
needs: ["sdist", "build"]
if: startsWith(github.ref, 'refs/tags/0.')
steps:
- name: Download test data
Expand Down

0 comments on commit 0da0a69

Please sign in to comment.