Skip to content

Restructure VMSS bootstrap bash scripts for increased reliability and debugability #6880

Restructure VMSS bootstrap bash scripts for increased reliability and debugability

Restructure VMSS bootstrap bash scripts for increased reliability and debugability #6880

Workflow file for this run

name: ci-go
on:
push:
tags:
- v*
branches:
- master
pull_request:
permissions:
contents: read
jobs:
ci-from-docker:
runs-on: ubuntu-latest
container:
image: registry.access.redhat.com/ubi8/go-toolset:1.20.12-5
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Go runtime deps
run: |
make install-go-tools
- name: Build all
run: |
make build-all
- name: Run unit tests
run: |
make unit-test-go
vendor-check:
runs-on: ubuntu-latest
container:
image: registry.access.redhat.com/ubi8/go-toolset:1.20.12-5
steps:
- name: Checkout repository
uses: actions/checkout@v4
- run: |
go mod vendor
go mod tidy -compat=1.20
hack/ci-utils/isClean.sh
generate-check:
runs-on: ubuntu-latest
container:
image: registry.access.redhat.com/ubi8/go-toolset:1.20.12-5
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run make generate
run: |
make generate
hack/ci-utils/isClean.sh