Skip to content

Commit

Permalink
Exclude wireguard + globalnet
Browse files Browse the repository at this point in the history
Until #552 is fixed..

Also set env vars using `env`.
  • Loading branch information
mkolesnik authored and mangelajo committed May 8, 2020
1 parent b61b3ae commit 7da10ce
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
exclude:
- deploytool: 'helm'
cable_driver: 'wireguard'
# TODO: Remove exclusion when issue #552 is fixed
- globalnet: '--globalnet'
cable_driver: 'wireguard'
steps:
- name: Checkout the repository
uses: actions/checkout@master
Expand All @@ -41,10 +44,11 @@ jobs:
df -h
free -h
- name: Run E2E
- name: Run E2E deployment and tests
env:
CLUSTERS_ARGS: ${{ matrix.globalnet }}
DEPLOY_ARGS: ${{ matrix.globalnet }} --deploytool ${{ matrix.deploytool }}
run: |
export CLUSTERS_ARGS="${{ matrix.globalnet }}"
export DEPLOY_ARGS="${{ matrix.globalnet }} --deploytool ${{ matrix.deploytool }}"
[[ -z "${{ matrix.cable_driver }}" ]] || DEPLOY_ARGS+=" --deploytool_submariner_args '--cable-driver ${{ matrix.cable_driver }}'"
make e2e
Expand Down

0 comments on commit 7da10ce

Please sign in to comment.