Skip to content

Commit

Permalink
.github/workflows/build_manylinux.yaml: update before script
Browse files Browse the repository at this point in the history
  • Loading branch information
szobov committed Oct 21, 2024
1 parent e0d8330 commit 33e7b44
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build_manylinux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# maturin generate-ci --platform manylinux --pytest github
#
name: CI
name: build manylinux wheels

on:
push:
Expand All @@ -26,14 +26,19 @@ jobs:
platform:
- runner: ubuntu-latest
target: x86_64
before_script: "yum -y install openblas-devel openssl-devel"
- runner: ubuntu-latest
target: aarch64
before_script: "apt-get install -y libopenblas-dev libssl-dev"
- runner: ubuntu-latest
target: armv7
before_script: "apt-get install -y libopenblas-dev libssl-dev"
- runner: ubuntu-latest
target: s390x
before_script: "apt-get install -y libopenblas-dev libssl-dev"
- runner: ubuntu-latest
target: ppc64le
before_script: "apt-get install -y libopenblas-dev libssl-dev"
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand All @@ -47,7 +52,7 @@ jobs:
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: auto
before-script-linux: yum -y install openblas-devel openssl-devel
before-script-linux: ${{ matrix.platform.before_script }}
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 33e7b44

Please sign in to comment.