Skip to content

hack: complete CI workflow redesign #2

hack: complete CI workflow redesign

hack: complete CI workflow redesign #2

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:
uses: ./.github/workflows/build.yml
with:
target: x86
build-aarch:
uses: ./.github/workflows/build.yml
with:
target: aarch
test-x86:
needs: build-x86
uses: ./.github/workflows/test.yml
with:
target: x86