|
62 | 62 | - name: 'Upload build artifacts' |
63 | 63 | uses: 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' |
64 | 64 | with: |
65 | | - name: 'build-artifacts' |
| 65 | + name: 'build-artifacts-${{ github.run_id }}' |
66 | 66 | path: 'build-artifacts.tar' |
67 | 67 |
|
68 | 68 | e2e_linux: |
@@ -102,7 +102,7 @@ jobs: |
102 | 102 | - name: 'Download build artifacts' |
103 | 103 | uses: 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093' |
104 | 104 | with: |
105 | | - name: 'build-artifacts' |
| 105 | + name: 'build-artifacts-${{ github.run_id }}' |
106 | 106 | path: '.' |
107 | 107 |
|
108 | 108 | - name: 'Extract build artifacts' |
@@ -168,7 +168,7 @@ jobs: |
168 | 168 | - name: 'Download build artifacts' |
169 | 169 | uses: 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093' |
170 | 170 | with: |
171 | | - name: 'build-artifacts' |
| 171 | + name: 'build-artifacts-${{ github.run_id }}' |
172 | 172 | path: '.' |
173 | 173 |
|
174 | 174 | - name: 'Extract build artifacts' |
@@ -196,9 +196,11 @@ jobs: |
196 | 196 |
|
197 | 197 | e2e_windows: |
198 | 198 | name: 'Slow E2E - Win' |
199 | | - if: "needs.merge_queue_skipper.outputs.skip != 'true'" |
200 | | - needs: |
201 | | - - 'merge_queue_skipper' |
| 199 | + if: | |
| 200 | + github.event_name == 'push' || |
| 201 | + github.event_name == 'merge_group' || |
| 202 | + (github.event.pull_request.head.repo.full_name == github.repository) || |
| 203 | + (github.event.label.name == 'maintainer:e2e:ok') |
202 | 204 | runs-on: 'gemini-cli-windows-16-core' |
203 | 205 | continue-on-error: true |
204 | 206 |
|
|
0 commit comments