Skip to content

🌱 chore(deps): update konflux references (release-2.13) #801

🌱 chore(deps): update konflux references (release-2.13)

🌱 chore(deps): update konflux references (release-2.13) #801

Workflow file for this run

# Copyright Contributors to the Open Cluster Management project
name: Go
on:
workflow_dispatch: {}
pull_request:
branches:
- main
- release-*
env:
# Common versions
GO_VERSION: '1.22'
GO_REQUIRED_MIN_VERSION: ''
GOPATH: '/home/runner/work/klusterlet-addon-controller/klusterlet-addon-controller/go'
defaults:
run:
working-directory: go/src/github.com/stolostron/klusterlet-addon-controller
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
with:
fetch-depth: 1
path: go/src/github.com/stolostron/klusterlet-addon-controller
- name: install Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: build
run: make build
unit:
name: unit
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
with:
fetch-depth: 1
path: go/src/github.com/stolostron/klusterlet-addon-controller
- name: install Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: unit
run: make test
e2e:
name: e2e
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
with:
fetch-depth: 1
path: go/src/github.com/stolostron/klusterlet-addon-controller
- name: install Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: install imagebuilder
run: go install github.com/openshift/imagebuilder/cmd/[email protected]
- name: images
run: make build-image
- name: setup kind
uses: engineerd/[email protected]
with:
version: v0.11.1
config: go/src/github.com/stolostron/klusterlet-addon-controller/build/e2e/kind-config.yaml
- name: Load image on the nodes of the cluster
run: |
kind load docker-image --name=kind quay.io/stolostron/klusterlet-addon-controller:latest
- name: Run e2e test
run: |
make test-e2e
env:
KUBECONFIG: /home/runner/.kube/config