Add PyPy #784
Workflow file for this run
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 Python on branch | ||
on: | ||
push: | ||
branches: ["main"] | ||
paths: ["scripts/**", ".github/cosmocc_version.txt", ".github/workflows/**", "zigshim/**", "checksums/**", "baseline/**"] | ||
pull_request: | ||
paths: ["scripts/**", ".github/cosmocc_version.txt", ".github/workflows/**", "zigshim/**", "checksums/**", "baseline/**"] | ||
workflow_dispatch: | ||
inputs: | ||
run_tests: | ||
required: false | ||
type: boolean | ||
debug: | ||
required: false | ||
type: boolean | ||
verbose: | ||
required: false | ||
type: boolean | ||
buildsystem_branch: | ||
required: false | ||
type: string | ||
default: "portable-python" | ||
jobs: | ||
cpython: | ||
name: CPython ${{ matrix.python_version }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python_version: [ 3.9.19, 3.10.14, 3.11.9, 3.12.4 ] | ||
uses: ./.github/workflows/build_python.yml | ||
with: | ||
python_version: ${{ matrix.python_version }} | ||
run_tests: ${{ inputs.run_tests || false }} | ||
debug: ${{ inputs.debug || false }} | ||
verbose: ${{ inputs.verbose || false }} | ||
platforms: "linux-x86_64,linux-aarch64,linux-i386,linux-arm,linux-riscv64,macos,windows,cosmo,freebsd13-x86_64,freebsd14-x86_64" | ||
buildsystem_branch: ${{ inputs.buildsystem_branch || 'portable-python' }} | ||
graalpy: | ||
name: GraalPy ${{ matrix.graalpy_version }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
graalpy_version: [ 24.0.1 ] | ||
uses: ./.github/workflows/repackage_graalpy.yml | ||
with: | ||
graalpy_version: ${{ matrix.graalpy_version }} | ||
platforms: "linux-x86_64,linux-aarch64,macos,windows" | ||
pypy: | ||
name: PyPy ${{ matrix.pypy_version }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
pypy_version: [ 7.3.16 ] | ||
uses: ./.github/workflows/repackage_pypy.yml | ||
Check failure on line 58 in .github/workflows/build_python_on_branch.yml GitHub Actions / Build Python on branchInvalid workflow file
|
||
with: | ||
graalpy_version: ${{ matrix.pypy_version }} | ||
platforms: "linux-x86_64,linux-aarch64,macos,windows" |