feat: update gcc-toolset to gcc-toolset-13 on manylinux_2_28 #1622
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 | |
on: | |
workflow_dispatch: | |
inputs: | |
useCache: | |
description: Use GHA cache | |
type: boolean | |
required: false | |
default: true | |
push: | |
branches-ignore: | |
- "update-dependencies-pr" | |
paths: | |
- ".github/workflows/build.yml" | |
- "docker/**" | |
- "tests/**" | |
- "*.sh" | |
pull_request: | |
paths: | |
- ".github/workflows/build.yml" | |
- "docker/**" | |
- "tests/**" | |
- "*.sh" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
build_manylinux: | |
name: ${{ matrix.policy }}_${{ matrix.platform }} | |
runs-on: ubuntu-22.04 | |
permissions: | |
actions: write # this permission is needed to delete cache | |
strategy: | |
fail-fast: false | |
matrix: | |
policy: ["manylinux2014", "musllinux_1_2"] | |
platform: ["i686", "x86_64"] | |
include: | |
- policy: "manylinux_2_28" | |
platform: "x86_64" | |
env: | |
POLICY: ${{ matrix.policy }} | |
PLATFORM: ${{ matrix.platform }} | |
COMMIT_SHA: ${{ github.sha }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 50 | |
- name: Set up emulation | |
if: matrix.platform != 'i686' && matrix.platform != 'x86_64' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: ${{ matrix.platform }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Restore cache | |
if: github.event_name != 'workflow_dispatch' || fromJSON(github.event.inputs.useCache) | |
uses: actions/cache/restore@v4 | |
with: | |
path: .buildx-cache-${{ matrix.policy }}_${{ matrix.platform }}/* | |
key: buildx-cache-${{ matrix.policy }}-${{ matrix.platform }} | |
- name: Build | |
run: ./build.sh | |
- name: Delete cache | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
run: | | |
KEY="buildx-cache-${{ matrix.policy }}-${{ matrix.platform }}" | |
gh cache delete ${KEY} || true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Save cache | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
uses: actions/cache/save@v4 | |
with: | |
path: .buildx-cache-${{ matrix.policy }}_${{ matrix.platform }}/* | |
key: buildx-cache-${{ matrix.policy }}-${{ matrix.platform }} | |
- name: Deploy | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository == 'pypa/manylinux' | |
run: ./deploy.sh | |
env: | |
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }} | |
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }} | |
all_passed: | |
needs: [build_manylinux] | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "All jobs passed" |