Skip to content

Commit

Permalink
test ipv6
Browse files Browse the repository at this point in the history
Signed-off-by: zirain <[email protected]>
  • Loading branch information
zirain committed Oct 28, 2024
1 parent 7ad18fa commit b6b0f5a
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,19 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
target:
- version: v1.28.13

Check failure on line 118 in .github/workflows/build_and_test.yaml

View workflow job for this annotation

GitHub Actions / lint

118:11 [indentation] wrong indentation: expected 8 but found 10

Check failure on line 118 in .github/workflows/build_and_test.yaml

View workflow job for this annotation

GitHub Actions / lint

118:11 [indentation] wrong indentation: expected 8 but found 10

Check failure on line 118 in .github/workflows/build_and_test.yaml

View workflow job for this annotation

GitHub Actions / lint

118:11 [indentation] wrong indentation: expected 8 but found 10
ipFamily: ipv4
- version: v1.29.8
ipFamily: ipv4
- version: v1.30.4
ipFamily: ipv4
- version: v1.31.0
ipFamily: ipv4
- version: v1.31.0
ipFamily: ipv6 # only run ipv6 test on latest version to save time
- version: v1.31.0
ipFamily: dual # only run dual test on latest version to save time

Check warning on line 129 in .github/workflows/build_and_test.yaml

View workflow job for this annotation

GitHub Actions / lint

129:28 [comments] too few spaces before comment

Check warning on line 129 in .github/workflows/build_and_test.yaml

View workflow job for this annotation

GitHub Actions / lint

129:28 [comments] too few spaces before comment

Check warning on line 129 in .github/workflows/build_and_test.yaml

View workflow job for this annotation

GitHub Actions / lint

129:28 [comments] too few spaces before comment
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- uses: ./tools/github-actions/setup-deps
Expand All @@ -133,9 +145,9 @@ jobs:
# E2E
- name: Run E2E Tests
env:
KIND_NODE_TAG: ${{ matrix.version }}
KIND_NODE_TAG: ${{ matrix.target.version }}
IMAGE_PULL_POLICY: IfNotPresent
run: make e2e
run: IP_FAMILY=${{ matrix.target.ipFamily }} make e2e

benchmark-test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit b6b0f5a

Please sign in to comment.