diff --git a/.github/workflows/maturin-wheels.yml b/.github/workflows/maturin-wheels.yml index 06d8bf10..423b992b 100644 --- a/.github/workflows/maturin-wheels.yml +++ b/.github/workflows/maturin-wheels.yml @@ -21,7 +21,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - target: [x86_64, x86, aarch64, armv7, s390x, ppc64le] + target: [x86_64, x86] + #, aarch64, armv7, s390x, ppc64le] steps: - uses: actions/checkout@v3 - name: Install LLVM and Clang @@ -29,7 +30,6 @@ jobs: with: version: "10.0" - name: Symlink libclang.so (Linux) - #if: contains(matrix.os, 'ubuntu') 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 @@ -48,28 +48,28 @@ 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 + # 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 @@ -78,6 +78,16 @@ jobs: target: [x86_64, aarch64] steps: - uses: actions/checkout@v3 + - name: Install LLVM and Clang + 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' - uses: actions/setup-python@v4 with: python-version: '3.10'