From baa7af5ac463cc0135dab400c104b6b68334261b Mon Sep 17 00:00:00 2001 From: Otto Date: Wed, 12 Jun 2024 08:23:35 +0200 Subject: [PATCH] Python workflow: linux image needs yum instead of apt? --- .github/workflows/python.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index 4d4a1875..662ab53e 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -46,7 +46,7 @@ jobs: target: ${{ matrix.platform.target }} args: --release --out dist --find-interpreter --manifest-path python/Cargo.toml sccache: "true" - before-script-linux: apt-get update && apt-get install -y pkg-config libasound2-dev libjack-jackd2-dev cmake + before-script-linux: yum update && yum install -y pkg-config libasound2-dev manylinux: auto - name: Upload wheels uses: actions/upload-artifact@v4 @@ -80,7 +80,7 @@ jobs: # target: ${{ matrix.platform.target }} # args: --release --out dist --find-interpreter --manifest-path python/Cargo.toml # sccache: "true" - # before-script-linux: apt-get update && apt-get install -y pkg-config libasound2-dev libjack-jackd2-dev cmake + # before-script-linux: yum update && yum install -y pkg-config libasound2-dev # manylinux: musllinux_1_2 # - name: Upload wheels # uses: actions/upload-artifact@v4