This repository was archived by the owner on Feb 1, 2026. It is now read-only.
build(deps): bump envoyproxy/envoy from v1.36.4 to v1.37.0 in /cmd/cl-dataplane #429
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR check - CLI Installation test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| cli-test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-tags: true | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: ./go.mod | |
| - name: Install kind | |
| uses: helm/[email protected] | |
| with: | |
| install_only: true | |
| - name: Run build | |
| run: make build | |
| - name: Build docker images | |
| run: make docker-build | |
| - name: Run installation test using CLI | |
| run: ./tests/cli/basic_test.sh | |
| - name: upload e2e k8s test logs | |
| uses: actions/upload-artifact@v6 | |
| if: failure() | |
| with: | |
| name: tests-cli | |
| path: /tmp/clusterlink-cli |