Skip to content

Commit

Permalink
try to install toolchains
Browse files Browse the repository at this point in the history
  • Loading branch information
gtfierro committed Nov 3, 2022
1 parent f5b4ff4 commit 84e962d
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/publish2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ jobs:
with:
python-version: 3.9
architecture: x64
- name: install toolchains
run: |
cd /workdir
yum -y install centos-release-scl-rh
yum -y install llvm-toolset-7.0
source scl_source enable llvm-toolset-7.0
- name: Build wheels
uses: messense/maturin-action@v1
with:
Expand All @@ -107,12 +113,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
target: [aarch64, armv7, s390x, ppc64le, ppc64]
target: [aarch64, armv7]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: install toolchains
run: |
cd /workdir
yum -y install centos-release-scl-rh
yum -y install llvm-toolset-7.0
source scl_source enable llvm-toolset-7.0
- name: Build wheels
uses: messense/maturin-action@v1
with:
Expand Down Expand Up @@ -152,6 +164,12 @@ jobs:
with:
python-version: 3.9
architecture: x64
- name: install toolchains
run: |
cd /workdir
yum -y install centos-release-scl-rh
yum -y install llvm-toolset-7.0
source scl_source enable llvm-toolset-7.0
- name: Build wheels
uses: messense/maturin-action@v1
with:
Expand Down Expand Up @@ -189,6 +207,12 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: install toolchains
run: |
cd /workdir
yum -y install centos-release-scl-rh
yum -y install llvm-toolset-7.0
source scl_source enable llvm-toolset-7.0
- name: Build wheels
uses: messense/maturin-action@v1
with:
Expand Down

0 comments on commit 84e962d

Please sign in to comment.