Skip to content

Commit

Permalink
remove daily Gateway API conformance run (#4842)
Browse files Browse the repository at this point in the history
Going forward, the latest Gateway API conformance
tests will be run in PRs against Contour feature
branches that track the latest Gateway API changes.

Closes #4837.

Signed-off-by: Steve Kriss <krisss@vmware.com>
  • Loading branch information
skriss committed Nov 9, 2022
1 parent 2ba1559 commit 8227450
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/build_daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,38 +148,3 @@ jobs:
steps: ${{ toJson(steps) }}
channel: '#contour-ci-notifications'
if: ${{ failure() && github.ref == 'refs/heads/main' }}
gateway-conformance:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
# * Module download cache
# * Build cache (Linux)
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-${{ github.job }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-${{ github.job }}-go-
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: add deps to path
run: |
./hack/actions/install-kubernetes-toolchain.sh $GITHUB_WORKSPACE/bin
echo "$GITHUB_WORKSPACE/bin" >> $GITHUB_PATH
- name: Gateway API conformance tests (latest)
env:
CONTOUR_E2E_IMAGE: ghcr.io/projectcontour/contour:main
GATEWAY_API_VERSION: "main"
run: |
# Skip the `load-contour-image-kind` target, pull the `main` image instead.
make setup-kind-cluster run-gateway-conformance cleanup-kind
- uses: act10ns/slack@v1
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
channel: '#contour-ci-notifications'
if: ${{ failure() && github.ref == 'refs/heads/main' }}

0 comments on commit 8227450

Please sign in to comment.