Skip to content

Commit

Permalink
Adjust build-wheels workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Oct 10, 2023
1 parent 2f17d1d commit 019e76d
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
name: build-wheels

# Build Linux wheels on successful completion of the `coverage` workflow on the `develop` branch
# Temporarily build wheels on every push to `develop` branch

on:
workflow_run:
workflows:
- coverage
push:
branches: [develop]
types:
- completed

jobs:
build-wheels:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
strategy:
fail-fast: false
matrix:
arch: [x64]
os: [ubuntu-latest]
python-version: ["3.10", "3.11"]
python-version: ["3.11"]
name: build - Python ${{ matrix.python-version }} (${{ matrix.arch }} ${{ matrix.os }})
runs-on: ${{ matrix.os }}

Expand Down

0 comments on commit 019e76d

Please sign in to comment.