[release/v1.6] Change KDM release URL to dev-v2.9 from release-v2.9 post RKE v1.6.0 #106
Workflow file for this run
This file contains 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: Test CNI | |
on: | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
integration-cni-tests: | |
permissions: | |
contents: read | |
runs-on: runs-on,runner=4cpu-linux-x64,run-id=${{ github.run_id }} | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
cni: [flannel, calico, weave] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Run ${{ matrix.cni }} check | |
run: | | |
./scripts/build | |
./scripts/integration ${{ matrix.cni }} |