Skip to content

Commit

Permalink
Temporarily add retries to the win32 build step.
Browse files Browse the repository at this point in the history
Addresses the issue #6.
  • Loading branch information
gukoff committed Jan 30, 2021
1 parent db2eb3d commit b6ad1a3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,14 @@ jobs:
curl https://sh.rustup.rs -sSf | sh -s -- --profile=minimal -y &&
rustup show
- name: build windows 32bit binaries
- name: build windows 32bit binaries (with retries)
uses: nick-invision/retry@v2.4.0
with:
timeout_minutes: 30
max_attempts: 20
retry_on: error
command: cibuildwheel --output-dir ${{ matrix.wheels-dir }}
if: matrix.os == 'windows'
run: cibuildwheel --output-dir ${{ matrix.wheels-dir }}
env:
CIBW_BUILD: '${{ matrix.cibw-version }}-win32'
CIBW_PLATFORM: windows
Expand Down

0 comments on commit b6ad1a3

Please sign in to comment.