Skip to content

Align api calls timeouts cronjob ip reconciler #1199

Align api calls timeouts cronjob ip reconciler

Align api calls timeouts cronjob ip reconciler #1199

Workflow file for this run

on: [push, pull_request]
name: Build
jobs:
build:
strategy:
matrix:
go-version: [1.21.x]
#goarch: [386, amd64, arm, ppc64le, arm64]
goarch: [amd64, arm64]
os: [ubuntu-latest] #, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Install kubebuilder tools
run: ./hack/install-kubebuilder-tools.sh
- name: Generate code
run: ./hack/generate-code.sh
- name: Build
env:
GOARCH: ${{ matrix.goarch }}
GOOS: ${{ matrix.goos }}
run: ./hack/build-go.sh