Skip to content

Commit

Permalink
ci: fix python, container off for protoc
Browse files Browse the repository at this point in the history
also no need for rustup, maturin does it for us
  • Loading branch information
alemidev committed Sep 9, 2024
1 parent 7d7bf63 commit 2680546
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
# target: armv7
steps:
- uses: actions/checkout@v4
- run: rustup update stable && rustup default stable
- uses: arduino/setup-protoc@v3
- uses: actions/setup-python@v5
with:
Expand All @@ -40,6 +39,7 @@ jobs:
with:
working-directory: dist/py
target: ${{ matrix.platform.target }}
container: 'off'
args: --release --out .
sccache: 'true'
manylinux: auto
Expand All @@ -64,7 +64,6 @@ jobs:
# target: armv7
steps:
- uses: actions/checkout@v4
- run: rustup update stable && rustup default stable
- uses: arduino/setup-protoc@v3
- uses: actions/setup-python@v5
with:
Expand All @@ -74,6 +73,7 @@ jobs:
with:
working-directory: dist/py
target: ${{ matrix.platform.target }}
container: 'off'
args: --release --out .
sccache: 'true'
manylinux: musllinux_1_2
Expand All @@ -94,7 +94,6 @@ jobs:
# target: x86
steps:
- uses: actions/checkout@v4
- run: rustup update stable && rustup default stable
- uses: arduino/setup-protoc@v3
- uses: actions/setup-python@v5
with:
Expand All @@ -105,6 +104,7 @@ jobs:
with:
working-directory: dist/py
target: ${{ matrix.platform.target }}
container: 'off'
args: --release --out .
sccache: 'true'
- name: Upload wheels
Expand All @@ -124,7 +124,6 @@ jobs:
target: aarch64
steps:
- uses: actions/checkout@v4
- run: rustup update stable && rustup default stable
- uses: arduino/setup-protoc@v3
- uses: actions/setup-python@v5
with:
Expand All @@ -134,6 +133,7 @@ jobs:
with:
working-directory: dist/py
target: ${{ matrix.platform.target }}
container: 'off'
args: --release --out .
sccache: 'true'
- name: Upload wheels
Expand Down

0 comments on commit 2680546

Please sign in to comment.