Skip to content

Commit

Permalink
Temporary test wheel building
Browse files Browse the repository at this point in the history
  • Loading branch information
marktsuchida committed Jul 6, 2024
1 parent e72da2d commit 189524a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
run: pytest -v

build_wheels:
if: github.event_name != 'pull_request'
# if: github.event_name != 'pull_request'
name: Build wheels on ${{ matrix.os }} ${{ matrix.macos_arch }}
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -124,6 +124,17 @@ jobs:
name: artifact-sdist
path: dist/*.tar.gz

temporary_test_download_artifacts:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
pattern: artifact-*
merge-multiple: true
path: dist
- run: ls -R dist

upload_pypi:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
Expand Down

0 comments on commit 189524a

Please sign in to comment.