diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90b50e5..026394a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,41 +60,41 @@ jobs: pip3 install ry --find-links dist --force-reinstall pytest - windows: - runs-on: windows-latest - if: | - github.ref == 'refs/heads/main' || - github.ref == 'refs/heads/master' || - github.ref == 'refs/tags/v*' - strategy: - matrix: - target: [ x64, x86 ] - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - 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@v4 - with: - name: wheels-windows-${{ matrix.target }} - path: dist - - name: pytest - if: ${{ !startsWith(matrix.target, 'aarch64') }} - shell: bash - run: | - set -e - pip install ry --find-links dist --force-reinstall - pip install pytest - pytest - +# windows: +# runs-on: windows-latest +# if: | +# github.ref == 'refs/heads/main' || +# github.ref == 'refs/heads/master' || +# github.ref == 'refs/tags/v*' +# strategy: +# matrix: +# target: [ x64, x86 ] +# steps: +# - uses: actions/checkout@v4 +# - uses: actions/setup-python@v5 +# 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@v4 +# with: +# name: wheels-windows-${{ matrix.target }} +# path: dist +# - name: pytest +# if: ${{ !startsWith(matrix.target, 'aarch64') }} +# shell: bash +# run: | +# set -e +# pip install ry --find-links dist --force-reinstall +# pip install pytest +# pytest +# # macos: # runs-on: macos-latest # # only run on tags/main and pull requests to main