mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-08-24 10:05:29 -05:00
6fe3267b23
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.0.0. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 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>
75 lines
1.9 KiB
YAML
75 lines
1.9 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: "macos-15-intel"
|
|
arm: "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", "3.14"]
|
|
exclude:
|
|
- os:
|
|
matrix: windows
|
|
arch:
|
|
matrix: arm
|
|
|
|
steps:
|
|
- uses: Chia-Network/actions/clean-workspace@main
|
|
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v7
|
|
|
|
- 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
|