Skip to content

Commit a4b05d8

Browse files
committed
fix(ci): remove sandbox build from e2e workflow
Removes the sandbox image build step from the e2e workflow. The e2e workflow will now consume a pre-built sandbox image, separating the concerns of building and testing.
1 parent 256ccd8 commit a4b05d8

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

.github/workflows/e2e.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,8 @@ on:
2222
required: true
2323

2424
jobs:
25-
build-sandbox-image:
26-
name: 'Build Sandbox Image'
27-
runs-on: 'ubuntu-latest'
28-
outputs:
29-
image-uri: '${{ steps.build-and-push.outputs.image-uri }}'
30-
steps:
31-
- id: 'build-and-push'
32-
uses: './.github/workflows/build-sandbox.yml'
33-
with:
34-
github-actor: '${{ github.actor }}'
35-
github-secret: '${{ secrets.GITHUB_TOKEN }}'
36-
github-sha: '${{ github.sha }}'
37-
github-ref-name: '${{ github.ref_name }}'
38-
dry-run: false
39-
4025
e2e_linux:
4126
name: 'E2E Test (Linux) - ${{ matrix.sandbox }}'
42-
needs: 'build-sandbox-image'
4327
if: |
4428
(github.event_name == 'push' ||
4529
github.event_name == 'merge_group' ||
@@ -226,7 +210,6 @@ jobs:
226210
needs:
227211
- 'e2e_linux'
228212
- 'e2e_mac'
229-
- 'build-sandbox-image'
230213
runs-on: 'ubuntu-latest'
231214
steps:
232215
- name: 'Check E2E test results'

0 commit comments

Comments
 (0)