mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 07:14:50 +01:00
ci: fix python, container off for protoc
also no need for rustup, maturin does it for us
This commit is contained in:
parent
27159ea733
commit
a9706cdf3d
1 changed files with 4 additions and 4 deletions
8
.github/workflows/python.yml
vendored
8
.github/workflows/python.yml
vendored
|
@ -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:
|
||||
|
@ -40,6 +39,7 @@ jobs:
|
|||
with:
|
||||
working-directory: dist/py
|
||||
target: ${{ matrix.platform.target }}
|
||||
container: 'off'
|
||||
args: --release --out .
|
||||
sccache: 'true'
|
||||
manylinux: auto
|
||||
|
@ -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:
|
||||
|
@ -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
|
||||
|
@ -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:
|
||||
|
@ -105,6 +104,7 @@ jobs:
|
|||
with:
|
||||
working-directory: dist/py
|
||||
target: ${{ matrix.platform.target }}
|
||||
container: 'off'
|
||||
args: --release --out .
|
||||
sccache: 'true'
|
||||
- name: Upload wheels
|
||||
|
@ -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:
|
||||
|
@ -134,6 +133,7 @@ jobs:
|
|||
with:
|
||||
working-directory: dist/py
|
||||
target: ${{ matrix.platform.target }}
|
||||
container: 'off'
|
||||
args: --release --out .
|
||||
sccache: 'true'
|
||||
- name: Upload wheels
|
||||
|
|
Loading…
Reference in a new issue