mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-22 01:07:12 -07:00
incorporating docker into new orchestrator
This commit is contained in:
@@ -53,13 +53,28 @@ jobs:
|
||||
- id: 'get-vars'
|
||||
run: 'echo ''cli-package-name=''''${{ vars.CLI_PACKAGE_NAME }}'''''' >> "$GITHUB_OUTPUT"'
|
||||
|
||||
build-sandbox:
|
||||
name: 'Build Sandbox Image'
|
||||
needs: 'lint'
|
||||
uses: './.github/workflows/build-sandbox.yml'
|
||||
with:
|
||||
github-actor: '${{ github.actor }}'
|
||||
github-secret: '${{ github.token }}'
|
||||
github-sha: '${{ github.sha }}'
|
||||
github-ref-name: '${{ github.ref_name }}'
|
||||
dry-run: false
|
||||
npm-registry-scope: '${{ vars.NPM_REGISTRY_SCOPE }}'
|
||||
npm-registry-url: '${{ vars.NPM_REGISTRY_URL }}'
|
||||
cli-package-name: '${{ vars.CLI_PACKAGE_NAME }}'
|
||||
|
||||
e2e:
|
||||
name: 'E2E Checks'
|
||||
needs: ['build-and-publish', 'get-vars']
|
||||
needs: ['build-and-publish', 'get-vars', 'build-sandbox']
|
||||
uses: './.github/workflows/e2e.yml'
|
||||
with:
|
||||
version: '${{ needs.build-and-publish.outputs.version }}'
|
||||
cli-package-name: '${{ needs.get-vars.outputs.cli-package-name }}'
|
||||
image-uri: '${{ needs.build-sandbox.outputs.image-uri }}'
|
||||
secrets:
|
||||
GEMINI_API_KEY: '${{ secrets.GEMINI_API_KEY }}'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user