Run CI/CD on backport #11
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: CD Check Pipeline | |
concurrency: | |
group: cd-check-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
merge_group: | |
pull_request: | |
branches: | |
- "release" | |
types: | |
- opened | |
- synchronize | |
push: | |
branches: | |
- "backport/**/*" | |
jobs: | |
build-linux-x86_64: | |
name: "Linux x86_64: Build" | |
uses: ./.github/workflows/build.yml | |
with: | |
os: warp-ubuntu-latest-x64-4x | |
secrets: | |
cachix-token: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
build-linux-aarch64: | |
name: "Linux aarch64: Build" | |
uses: ./.github/workflows/build.yml | |
with: | |
os: warp-ubuntu-latest-arm64-8x | |
secrets: | |
cachix-token: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
build-macos-aarch64: | |
name: "MacOS aarch64: Build" | |
uses: ./.github/workflows/build.yml | |
with: | |
os: warp-macos-latest-arm64-6x | |
secrets: | |
cachix-token: "${{ secrets.CACHIX_AUTH_TOKEN }}" |