Bumping kustomize and client go versions #830
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: PR | |
on: | |
pull_request: | |
branches: [ main ] | |
env: | |
GO_VERSION: '^1.20' # Require Go 1.20 and above, but lower than Go 2.0.0 | |
jobs: | |
unit_tests: | |
name: unit tests | |
runs-on: ubuntu-latest | |
container: us.gcr.io/cf-rabbitmq-for-k8s-bunny/rabbitmq-for-kubernetes-ci | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
check-latest: true | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Unit tests | |
run: make unit-tests | |
- name: Integration tests | |
run: make integration-tests | |
system_tests: | |
name: system tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
k8s: [v1.22.17, v1.26.3] | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
check-latest: true | |
- name: System tests | |
env: | |
K8S_VERSION: ${{ matrix.k8s }} | |
run: | | |
export GOPATH="$HOME/go" | |
export PATH="$PATH:$GOPATH/bin" | |
make install-tools cmctl | |
kind create cluster --image kindest/node:"$K8S_VERSION" | |
make cert-manager cluster-operator | |
DOCKER_REGISTRY_SERVER=local-server OPERATOR_IMAGE=local-operator make deploy-kind BUILD_KIT=docker | |
make system-tests BUILD_KIT=docker |