Skip to content

Commit

Permalink
Remove matrix dependency from e2e-tests job
Browse files Browse the repository at this point in the history
  • Loading branch information
pyronaur committed Aug 28, 2023
1 parent 5b07663 commit 87e08c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,13 @@ jobs:
e2e-tests:
name: "${{ needs.build-projects.outputs.project }} e2e tests"
runs-on: ubuntu-latest
needs: [ create-test-matrix, build-projects ]
needs: build-projects
timeout-minutes: 60
if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name

steps:
- uses: actions/checkout@v3
- name: Restore $${{ matrix.buildGroup }} build cache
- name: Restore ${{ needs.build-projects.outputs.buildGroup }} build cache
id: jetpack-build-cache
uses: actions/cache/restore@v3
with:
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
fi
- name: Wait for atomic site to be ready
if: ${{ startsWith(matrix.suite, 'atomic') }}
if: ${{ startsWith(needs.build-projects.outputs.suite, 'atomic') }}
working-directory: ${{ needs.build-projects.outputs.path }}
env:
DISPATCH_REF_NAME: ${{ github.event.client_payload.ref_name }}
Expand All @@ -227,7 +227,7 @@ jobs:
- name: Set up VIP site
if: ${{ needs.build-projects.outputs.suite == 'vip' }}
working-directory: ${{ matrix.path }}
working-directory: ${{ needs.build-projects.outputs.path }}
run: |
echo "TEST_SITE=vip" >> $GITHUB_ENV
Expand Down

0 comments on commit 87e08c0

Please sign in to comment.