diff options
| author | wackxu <xushiwei5@huawei.com> | 2022-10-20 11:14:34 +0800 |
|---|---|---|
| committer | wackxu <xushiwei5@huawei.com> | 2022-10-21 17:02:54 +0800 |
| commit | 57f67b85a3ac7237bd3496f3b143ae59f9467c87 (patch) | |
| tree | 7d0301f6a5f8fcd4f2b975737d0faa2243c66689 /.github | |
| parent | local up cluster support quic (diff) | |
| download | kubeedge-57f67b85a3ac7237bd3496f3b143ae59f9467c87.tar.gz | |
add quic e2e test
Signed-off-by: wackxu <xushiwei5@huawei.com>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yaml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index d4819c662..36c0777c6 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -132,6 +132,11 @@ jobs: e2e_test: runs-on: ubuntu-18.04 + strategy: + matrix: + PROTOCOL: + - WebSocket + - QUIC timeout-minutes: 30 name: E2e test needs: image-prepare @@ -169,12 +174,14 @@ jobs: run: | docker load < /home/runner/build-tools/build-tools.tar - - run: make e2e + - run: | + export PROTOCOL=${{ matrix.PROTOCOL }} + make e2e - uses: actions/upload-artifact@v3 if: always() with: - name: e2e-test-logs + name: ${{ matrix.PROTOCOL }}-e2e-test-logs path: | /tmp/cloudcore.log /tmp/edgecore.log |
