Skip to content

hack: complete CI workflow redesign #3

hack: complete CI workflow redesign

hack: complete CI workflow redesign #3

Workflow file for this run

name: Self Trigger
on:
pull_request:
types: [opened, synchronize, reopened, labeled]
push:
branches:
- main
- ci-workflow-redesign
workflow_dispatch:
jobs:
build-x86_64:
uses: ./.github/workflows/build.yml
with:
target: x86_64
build-aarch64:
uses: ./.github/workflows/build.yml
with:
target: aarch64
test-x86_64:
needs: build-x86_64
uses: ./.github/workflows/test.yml
with:
target: x86_64