sync up with uvloop fork that I have to allow people to start testing it. #106
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Borrowed from pycares & cyares, | |
| # this will be the nightly build I've | |
| # been talking about adding for the past 2 years, | |
| # - Vizonex | |
| name: Build Wheels | |
| on: [pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| build_wheels: | |
| uses: ./.github/workflows/run-cibuildwheel.yml | |
| with: | |
| prerelease-pythons: true | |
| build_sdist: | |
| uses: ./.github/workflows/run-sdist.yml | |
| check_build: | |
| needs: [build_wheels, build_sdist] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/download-artifact@v7 | |
| with: | |
| path: dist | |
| merge-multiple: true | |
| - run: ls -lR dist |