Update to Changelog, config and scripts. (#3095) (#3107) #1942
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: Automatic Pull Request test | |
on: | |
pull_request: | |
branches: | |
- "master" | |
- "release*" | |
permissions: | |
contents: read | |
jobs: | |
unit-test: | |
name: Unit test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout latest commit in the PR | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # refs/tags/v4.1.7 | |
- name: Set up Go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # refs/tags/v5.0.1 | |
with: | |
go-version: "1.22" | |
- name: Set up tools | |
run: | | |
go install golang.org/x/lint/golint@latest | |
go install golang.org/x/tools/cmd/goimports@latest | |
# Install ginkgo version from go.mod | |
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo | |
- name: Run code checks | |
run: | | |
make check-format | |
make vet | |
- name: Build | |
run: make build-linux | |
- name: Build tests | |
run: make build-test-binaries | |
- name: Helm lint | |
run: make helm-lint | |
- name: Unit test | |
run: make unit-test | |
- name: Upload code coverage | |
uses: codecov/codecov-action@79066c46f8dcdf8d7355f820dbac958c5b4cb9d3 # refs/tags/v4.5.0 | |
docker-build: | |
name: Build Docker images | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout latest commit in the PR | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # refs/tags/v4.1.7 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # refs/tags/v3.0.0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # refs/tags/v3.3.0 | |
- name: Set up Go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # refs/tags/v5.0.1 | |
with: | |
go-version: "1.22" | |
- name: Build CNI images | |
run: make multi-arch-cni-build | |
- name: Build CNI Init images | |
run: make multi-arch-cni-init-build |