From 5b68266148d2d6015c9b6c0cf45c06c37753c504 Mon Sep 17 00:00:00 2001 From: angie Date: Sat, 9 Jul 2022 15:51:19 -0400 Subject: [PATCH] Build for every supported architecture on ci builds --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 368ff14..8af75a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,13 +9,17 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, macos-10.15, windows-2019] + os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@v2 - name: Build wheels uses: pypa/cibuildwheel@v2.5.0 + env: + CIBW_ARCHS_WINDOWS: "all" + CIBW_ARCHS_LINUX: "all" + CIBW_ARCHS_MACOS: "all" - uses: actions/upload-artifact@v2 with: