Merge pull request #445 from portersrc/release-bump-nydus-snapshotter… #298
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: Makefile CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Set up Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | |
with: | |
go-version-file: go.mod | |
check-latest: true | |
- name: Download controller-gen | |
run: make controller-gen | |
- name: Download kustomize | |
run: make kustomize | |
- name: Build controller | |
run: make build | |
- name: Build bundle | |
run: make bundle IMG=quay.io/confidential-containers/operator:latest | |
codeql: | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
needs: | |
- build | |
uses: "./.github/workflows/lib-codeql.yaml" | |
envtest: | |
name: Test APIs using envtest | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
version: | |
- 1.29.x | |
- 1.30.x | |
- 1.31.x | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | |
with: | |
go-version-file: go.mod | |
check-latest: true | |
- name: Install envtest and k8s control plane | |
run: | | |
go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest | |
setup-envtest use ${{ matrix.version }} | |
- name: Run envtest | |
run: | | |
KUBEBUILDER_ASSETS=$(setup-envtest use -i -p path ${{ matrix.version }}) go test ./... -coverprofile cover.out |