Merge pull request #853 from getsentry/craft-release-8395a8dc80f18652… #1833
This file contains 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
name: build | |
on: | |
pull_request: | |
push: | |
branches: [main, test-me-*] | |
concurrency: | |
# serialize runs on the default branch | |
group: ${{ github.event_name == 'push' && github.workflow || github.sha }}${{ github.workflow }} | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
container: ghcr.io/getsentry/pypi-manylinux-amd64-ci | |
steps: | |
- uses: actions/checkout@v3 | |
- run: python3 -um build --pypi-url https://pypi.devinfra.sentry.io | |
- run: python3 -um validate --index-url https://pypi.devinfra.sentry.io/simple | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist-linux | |
path: dist/* | |
macos: | |
strategy: | |
matrix: | |
runs-on: [macos-14, macos-13] | |
runs-on: ${{ matrix.runs-on }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
# work around https://github.com/indygreg/python-build-standalone/issues/208 | |
HOMEBREW_NO_AUTO_UPDATE=1 brew install gnu-tar | |
echo "$(brew --prefix gnu-tar)/libexec/gnubin" >> "$GITHUB_PATH" | |
- run: python3 -u docker/install-pythons --dest pythons | |
- run: | | |
echo "$PWD/pythons/cp310-cp310/bin" >> "$GITHUB_PATH" | |
echo "$PWD/pythons/cp311-cp311/bin" >> "$GITHUB_PATH" | |
echo "$PWD/pythons/cp312-cp312/bin" >> "$GITHUB_PATH" | |
echo "$PWD/venv/bin" >> "$GITHUB_PATH" | |
- run: python3 -um venv venv && pip install -r docker/requirements.txt | |
- run: python3 -um build --pypi-url https://pypi.devinfra.sentry.io | |
- run: python3 -um validate --index-url https://pypi.devinfra.sentry.io/simple | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist-${{ matrix.runs-on }} | |
path: dist/* | |
cirrus: | |
if: github.event_name != 'pull_request' | |
strategy: | |
matrix: | |
task: [linux-arm64] | |
runs-on: ubuntu-latest | |
permissions: | |
checks: read | |
steps: | |
- uses: getsentry/action-wait-for-cirrus@v1.0.0 | |
with: | |
task: ${{ matrix.task }} | |
timeout-minutes: 60 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist-${{ matrix.task }} | |
path: dist/* | |
collect-and-deploy: | |
needs: [linux, macos, cirrus] | |
if: github.event_name != 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- run: pip install -r docker/requirements.txt | |
- uses: actions/download-artifact@v3 | |
with: | |
path: dist | |
- run: python3 -um make_index --pypi-url https://pypi.devinfra.sentry.io --dest index | |
- uses: google-github-actions/auth@v0 | |
with: | |
credentials_json: ${{ secrets.PYPI_DEVINFRA_SENTRY_IO }} | |
- run: yes | gcloud auth login --cred-file="$GOOGLE_APPLICATION_CREDENTIALS" | |
- run: python3 -uS bin/upload-artifacts |