Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegenes committed Oct 4, 2023
1 parent 2eab44f commit 3cf1fdb
Showing 1 changed file with 1 addition and 28 deletions.
29 changes: 1 addition & 28 deletions .github/workflows/maturin-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
strategy:
matrix:
target: [x86_64, x86]
#, aarch64, armv7, s390x, ppc64le]
steps:
- uses: actions/checkout@v3
- name: Install LLVM and Clang
Expand All @@ -48,29 +47,6 @@ jobs:
name: wheels
path: dist

# windows:
# runs-on: windows-latest
# strategy:
# matrix:
# target: [x64, x86]
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# with:
# python-version: '3.10'
# architecture: ${{ matrix.target }}
# - name: Build wheels
# uses: PyO3/maturin-action@v1
# with:
# target: ${{ matrix.target }}
# args: --release --out dist --find-interpreter
# sccache: 'true'
# - name: Upload wheels
# uses: actions/upload-artifact@v3
# with:
# name: wheels
# path: dist

macos:
runs-on: macos-latest
strategy:
Expand All @@ -82,9 +58,6 @@ jobs:
uses: KyleMayes/install-llvm-action@v1
with:
version: "10.0"
- name: Symlink libclang.so (Linux)
run: sudo ln -s libclang-11.so.1 /lib/x86_64-linux-gnu/libclang.so
working-directory: ${{ env.LLVM_PATH }}/lib
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand Down Expand Up @@ -122,7 +95,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, windows, macos, sdist]
needs: [linux, macos, sdist]
steps:
- uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit 3cf1fdb

Please sign in to comment.