This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
Bump k8s.io/client-go from 0.30.3 to 0.31.0 #321
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: "Cross compilation" | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- '**.md' | |
- '**.sh' | |
- '.wordlist.txt' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- '**.sh' | |
- '.wordlist.txt' | |
jobs: | |
cross-compile: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
Arch: [386, arm, amd64, arm64, mips, mipsle, mips64, mips64le, ppc64, ppc64le, riscv64, s390x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Go-Setup | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.5' | |
- name: Build | |
env: | |
GOARCH: ${{matrix.Arch}} | |
run: | | |
V=1 TANG_OPERATOR_CI=1 GOOS=$(go env GOOS) GOARCH=$GOARCH GOPATH=$(go env GOPATH) make build |