Skip to content

Commit

Permalink
remove emulation from matrix unless not empty
Browse files Browse the repository at this point in the history
  • Loading branch information
lkeegan committed Jun 11, 2024
1 parent 74f7f4d commit e20cf94
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
required: false
default: "0"
skip_emulation:
description: "Skip builds with targets requiring specified emulation"
description: "Skip builds with targets requiring specified emulation (qemu / none)"
required: true
default: qemu
deploy_to_testpypi:
Expand Down Expand Up @@ -45,37 +45,29 @@ jobs:
- os: ubuntu-latest
platform: "manylinux"
arch: "x86_64"
emulation: ""
- os: ubuntu-latest
platform: "manylinux"
arch: "i686"
emulation: ""
- os: ubuntu-latest
platform: "musllinux"
arch: "x86_64"
emulation: ""
- os: ubuntu-latest
platform: "musllinux"
arch: "i686"
emulation: ""
# windows
- os: windows-latest
platform: "win"
arch: "AMD64"
emulation: ""
- os: windows-latest
platform: "win"
arch: "x86"
emulation: ""
# macos
- os: macos-13
platform: "macos"
arch: "x86_64"
emulation: ""
- os: macos-latest
platform: "macos"
arch: "arm64"
emulation: ""

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit e20cf94

Please sign in to comment.