Skip to content

Commit

Permalink
Merge pull request #5 from p-strusiewiczsurmacki-mobica/standalone-eg…
Browse files Browse the repository at this point in the history
…ress-test-imporvement

Fixes for tests
  • Loading branch information
p-strusiewiczsurmacki-mobica authored Nov 6, 2024
2 parents 09d9a0e + c9d6543 commit b065851
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: ${{ env.go-version }}
cache-dependency-path: "**/go.sum"
- name: Cache tools
id: cache-tools
uses: actions/cache@v4
Expand Down Expand Up @@ -47,6 +48,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: ${{ env.go-version }}
cache-dependency-path: "**/go.sum"
- run: make image
- run: make certs
- name: Enable docker IPv6 mode
Expand All @@ -62,7 +64,11 @@ jobs:
working-directory: v2/e2e
- run: make install-coil
working-directory: v2/e2e
- run: make test
- run: make test TEST_IPAM=true TEST_EGRESS=true TEST_IPV6=false
if: matrix.ip-version == 'ipv4'
working-directory: v2/e2e
- run: make test TEST_IPAM=true TEST_EGRESS=true TEST_IPV6=true
if: matrix.ip-version == 'ipv6'
working-directory: v2/e2e
- run: make logs
working-directory: v2/e2e
Expand All @@ -84,6 +90,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: ${{ env.go-version }}
cache-dependency-path: "**/go.sum"
- run: make image
- run: make certs
- name: Enable docker IPv6 mode
Expand Down

0 comments on commit b065851

Please sign in to comment.