Skip to content

Commit

Permalink
Disable Linux for now
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Sep 17, 2023
1 parent f5cce86 commit 68e8e7f
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@ permissions:
contents: read

jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: -m cmdapp/Cargo.toml --release --features=python-binding --out dist --find-interpreter
sccache: 'true'
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
# linux:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# with:
# python-version: '3.10'
# - name: Build wheels
# uses: PyO3/maturin-action@v1
# with:
# target: ${{ matrix.target }}
# args: -m cmdapp/Cargo.toml --release --features=python-binding --out dist --find-interpreter
# sccache: 'true'
# manylinux: auto
# - name: Upload wheels
# uses: actions/upload-artifact@v3
# with:
# name: wheels
# path: dist

windows:
runs-on: windows-latest
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, windows, macos, sdist]
needs: [windows, macos, sdist]
steps:
- uses: actions/download-artifact@v3
with:
Expand All @@ -118,4 +118,4 @@ jobs:
with:
command: upload
args: --non-interactive --skip-existing *
manylinux: auto
# manylinux: auto

0 comments on commit 68e8e7f

Please sign in to comment.