Skip to content

Commit

Permalink
[ci] fix on-push workflow (#1161)
Browse files Browse the repository at this point in the history
The `on-push` workflow is broken with commit ba394b6. Fixing it to use
latest build & test workflows.
  • Loading branch information
pilkicTT authored Feb 3, 2025
1 parent 41464a8 commit 625bb5c
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,23 @@ on:

jobs:
docker-build:
uses: ./.github/workflows/build-and-test.yml
uses: ./.github/workflows/build-image.yml
secrets: inherit
build:
needs: docker-build
uses: ./.github/workflows/build.yml
secrets: inherit
with:
mlir_override: ${{ inputs.mlir_override }}
docker-image: ${{ needs.docker-build.outputs.docker-image }}
test:
needs:
- docker-build
- build
uses: ./.github/workflows/test.yml
secrets: inherit
with:
test_mark: 'push'
test_group_cnt: 2
test_group_ids: '[1,2]'
docker-image: ${{ needs.docker-build.outputs.docker-image }}

0 comments on commit 625bb5c

Please sign in to comment.