Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ jobs:

e2e-test:
needs: changes
environment: ${{ github.event.pull_request.head.repo.fork == true && 'prod-external' || 'prod' }}
strategy:
fail-fast: false
matrix:
Expand All @@ -99,5 +98,6 @@ jobs:
uses: ./.github/workflows/e2e-test.yaml
secrets: inherit
with:
environment: ${{ github.event.pull_request.head.repo.fork == true && 'prod-external' || 'prod' }}
e2e-selector: ${{ matrix.flavor }}
e2e-flags: ${{ matrix.flavor == 'quick' && '' || '--assert-timeout 20m0s'}}
5 changes: 5 additions & 0 deletions .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
e2e-flags:
type: string
description: "Flags to pass to chainsaw when running e2e tests"
environment:
required: false
type: string
default: ''
workflow_dispatch:
inputs:
e2e-selector:
Expand Down Expand Up @@ -70,6 +74,7 @@ jobs:
name: ${{ format('{0}-e2e-tests', inputs.e2e-selector) }}
if: ${{contains(fromJSON(needs.changes.outputs.paths), 'src')}}
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
LINODE_TOKEN: ${{ secrets.LINODE_TOKEN }}
Expand Down
Loading