mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-14 05:17:18 -07:00
feat(ci): Implement orchestrator workflow for unified build and test
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
# .github/workflows/pr-checks.yml
|
||||
name: 'PR Checks'
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- 'main'
|
||||
- 'release/**'
|
||||
merge_group:
|
||||
|
||||
concurrency:
|
||||
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build-and-publish:
|
||||
name: 'Build and Publish CI Bundle'
|
||||
uses: ./.github/workflows/build-and-publish.yml
|
||||
|
||||
ci:
|
||||
name: 'CI Checks'
|
||||
needs: build-and-publish
|
||||
uses: ./.github/workflows/ci.yml
|
||||
with:
|
||||
tag: ${{ needs.build-and-publish.outputs.tag }}
|
||||
|
||||
e2e:
|
||||
name: 'E2E Checks'
|
||||
needs: build-and-publish
|
||||
uses: ./.github/workflows/e2e.yml
|
||||
with:
|
||||
tag: ${{ needs.build-and-publish.outputs.tag }}
|
||||
Reference in New Issue
Block a user