mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-12 12:54:07 -07:00
Fix merge queue for forks (#8816)
This commit is contained in:
@@ -62,7 +62,7 @@ jobs:
|
|||||||
- name: 'Upload build artifacts'
|
- name: 'Upload build artifacts'
|
||||||
uses: 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02'
|
uses: 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02'
|
||||||
with:
|
with:
|
||||||
name: 'build-artifacts'
|
name: 'build-artifacts-${{ github.run_id }}'
|
||||||
path: 'build-artifacts.tar'
|
path: 'build-artifacts.tar'
|
||||||
|
|
||||||
e2e_linux:
|
e2e_linux:
|
||||||
@@ -102,7 +102,7 @@ jobs:
|
|||||||
- name: 'Download build artifacts'
|
- name: 'Download build artifacts'
|
||||||
uses: 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093'
|
uses: 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093'
|
||||||
with:
|
with:
|
||||||
name: 'build-artifacts'
|
name: 'build-artifacts-${{ github.run_id }}'
|
||||||
path: '.'
|
path: '.'
|
||||||
|
|
||||||
- name: 'Extract build artifacts'
|
- name: 'Extract build artifacts'
|
||||||
@@ -168,7 +168,7 @@ jobs:
|
|||||||
- name: 'Download build artifacts'
|
- name: 'Download build artifacts'
|
||||||
uses: 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093'
|
uses: 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093'
|
||||||
with:
|
with:
|
||||||
name: 'build-artifacts'
|
name: 'build-artifacts-${{ github.run_id }}'
|
||||||
path: '.'
|
path: '.'
|
||||||
|
|
||||||
- name: 'Extract build artifacts'
|
- name: 'Extract build artifacts'
|
||||||
@@ -196,9 +196,11 @@ jobs:
|
|||||||
|
|
||||||
e2e_windows:
|
e2e_windows:
|
||||||
name: 'Slow E2E - Win'
|
name: 'Slow E2E - Win'
|
||||||
if: "needs.merge_queue_skipper.outputs.skip != 'true'"
|
if: |
|
||||||
needs:
|
github.event_name == 'push' ||
|
||||||
- 'merge_queue_skipper'
|
github.event_name == 'merge_group' ||
|
||||||
|
(github.event.pull_request.head.repo.full_name == github.repository) ||
|
||||||
|
(github.event.label.name == 'maintainer:e2e:ok')
|
||||||
runs-on: 'gemini-cli-windows-16-core'
|
runs-on: 'gemini-cli-windows-16-core'
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user