From a4b05d83461beccf09d89b6d11589ec4992ab967 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Thu, 23 Oct 2025 09:48:19 -0700 Subject: [PATCH] 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. --- .github/workflows/e2e.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 39ae017ada..19f2b54825 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -22,24 +22,8 @@ on: required: true jobs: - build-sandbox-image: - name: 'Build Sandbox Image' - runs-on: 'ubuntu-latest' - outputs: - image-uri: '${{ steps.build-and-push.outputs.image-uri }}' - steps: - - id: 'build-and-push' - uses: './.github/workflows/build-sandbox.yml' - with: - github-actor: '${{ github.actor }}' - github-secret: '${{ secrets.GITHUB_TOKEN }}' - github-sha: '${{ github.sha }}' - github-ref-name: '${{ github.ref_name }}' - dry-run: false - e2e_linux: name: 'E2E Test (Linux) - ${{ matrix.sandbox }}' - needs: 'build-sandbox-image' if: | (github.event_name == 'push' || github.event_name == 'merge_group' || @@ -226,7 +210,6 @@ jobs: needs: - 'e2e_linux' - 'e2e_mac' - - 'build-sandbox-image' runs-on: 'ubuntu-latest' steps: - name: 'Check E2E test results'