From dd6bc283c7e8eb6dc028f2387e35f7cd663299ca Mon Sep 17 00:00:00 2001 From: Miguel Angel Ajo Date: Wed, 24 Feb 2021 14:39:49 +0100 Subject: [PATCH] Enable globalnet E2E matrix Signed-off-by: Miguel Angel Ajo --- .github/workflows/e2e.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 46001a1..d5fb997 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -11,12 +11,16 @@ jobs: runs-on: ubuntu-latest strategy: fail-fast: false + matrix: + globalnet: ['', 'globalnet'] steps: - name: Check out the repository uses: actions/checkout@v2 - name: Run E2E deployment and tests uses: submariner-io/shipyard/gh-actions/e2e@devel + with: + globalnet: ${{ matrix.globalnet }} - name: Post mortem if: failure()