hack: update test.yml to support workflow call #14
Workflow file for this run
This file contains hidden or 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: 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" | ||
| name: "infix" | ||
| flavor: "_minimal" | ||
| build-aarch64: | ||
| uses: ./.github/workflows/build.yml | ||
| with: | ||
| target: "aarch64" | ||
| name: "infix" | ||
| flavor: "_minimal" | ||
| test-run-x86_64: | ||
| needs: build-x86_64 | ||
| uses: ./.github/workflows/test.yml | ||
|
Check failure on line 29 in .github/workflows/trigger.yml
|
||
| with: | ||
| target: "x86_64" | ||
| test-publish-x86_64: | ||
| needs: test-run-x86_64 | ||
| uses: ./.github/workflows/publish.yml | ||