Skip to content

Commit

Permalink
make the new artifact names valid by moving the asterisk usage
Browse files Browse the repository at this point in the history
  • Loading branch information
renefritze committed Jan 10, 2024
1 parent 8b47139 commit bcc53c9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,19 @@ jobs:
- os: ubuntu-22.04
arch: "x86_64"
use_qemu: false
skip: "*manylinux*"
skip: "manylinux"
- os: ubuntu-22.04
arch: "x86_64"
use_qemu: false
skip: "*musllinux*"
skip: "musllinux"
- os: ubuntu-22.04
arch: "i686"
use_qemu: false
skip: "*manylinux*"
skip: "manylinux"
- os: ubuntu-22.04
arch: "i686"
use_qemu: false
skip: "*musllinux*"
skip: "musllinux"
# These take too long to build on Github
#- os: ubuntu-20.04
#arch: "aarch64"
Expand Down Expand Up @@ -102,13 +102,13 @@ jobs:
env:
CIBW_ARCHS: "${{ matrix.arch }}"
CIBW_BEFORE_TEST: rm -rf {package}/clang_tidy
CIBW_TEST_SKIP: "*linux*"
CIBW_SKIP: "${{matrix.skip}}"
CIBW_TEST_skip: "linux*"
CIBW_skip: "*${{matrix.skip}}*"
# clang-tidy simply does not want to cooperate with the github linux image
- name: Test Linux Wheel
if: runner.os == 'Linux' && !(matrix.use_qemu) && matrix.arch == 'x86_64'
run: |
if [[ "${{matrix.skip}}" == "*manylinux*" ]] ; then
if [[ "${{matrix.skip}}" == "manylinux" ]] ; then
docker build --build-arg BASEOS=alpine3.16 --build-arg PLATFORM=musllinux -f .github/workflows/Dockerfile .
else
docker build --build-arg BASEOS=slim-bullseye --build-arg PLATFORM=manylinux -f .github/workflows/Dockerfile .
Expand Down

0 comments on commit bcc53c9

Please sign in to comment.