Files
chia-blockchain/.github/workflows/check_wheel_availability.yaml
dependabot[bot] b94a3ef1d6 build(deps): bump actions/checkout from 5 to 6 (#20333)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 14:30:56 -08:00

75 lines
2.0 KiB
YAML

name: 🚨 Check Dependency Artifacts
on:
push:
branches:
- "long_lived/**"
- main
- "release/**"
release:
types: [published]
pull_request:
branches:
- "**"
concurrency:
group: ${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow_ref, github.event.pull_request.number) || github.run_id }}
cancel-in-progress: true
jobs:
check_dependency_artifacts:
name: ${{ matrix.os.name }} ${{ matrix.arch.name }} ${{ matrix.python-version }}
runs-on: ${{ matrix.os.runs-on[matrix.arch.matrix] }}
strategy:
fail-fast: false
matrix:
os:
- name: Linux
matrix: linux
runs-on:
intel: ubuntu-latest
arm: ubuntu-24.04-arm
- name: macOS
matrix: macos
runs-on:
intel: ${{ github.repository_owner == 'Chia-Network' && 'macos-13-intel' || 'macos-15-intel' }}
arm: ${{ github.repository_owner == 'Chia-Network' && 'macos-13-arm64' || 'macos-15' }}
- name: Windows
matrix: windows
runs-on:
intel: windows-latest
arch:
- name: ARM64
matrix: arm
- name: Intel
matrix: intel
python-version: ["3.10", "3.11", "3.12", "3.13"]
exclude:
- os:
matrix: windows
arch:
matrix: arm
steps:
- uses: Chia-Network/actions/clean-workspace@main
- name: Checkout Code
uses: actions/checkout@v6
- uses: Chia-Network/actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
if: matrix.os.matrix != 'windows'
run: |
sh setup-poetry.sh ${{ matrix.python-version }}
- name: Setup Poetry
if: matrix.os.matrix == 'windows'
run: |
./Setup-poetry.ps1 ${{ matrix.python-version }}
- name: Check Wheel Availability
run: python build_scripts/check_dependency_artifacts.py