Automated cherry pick of #16550: tests: use version from go.mod in github actions #16618: Update Go to v1.21.4 #20287
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: CI | |
'on': | |
- push | |
- pull_request | |
env: | |
GOPROXY: https://proxy.golang.org | |
GOPATH: ${{ github.workspace }}/go | |
permissions: | |
contents: read | |
jobs: | |
build-linux-amd64: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b | |
with: | |
path: ${{ env.GOPATH }}/src/k8s.io/kops | |
- name: Set up go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 | |
with: | |
go-version-file: '${{ env.GOPATH }}/src/k8s.io/kops/go.mod' | |
- name: make all examples test | |
working-directory: ${{ env.GOPATH }}/src/k8s.io/kops | |
run: | | |
make all examples test | |
build-macos-amd64: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b | |
with: | |
path: ${{ env.GOPATH }}/src/k8s.io/kops | |
- name: Set up go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 | |
with: | |
go-version-file: '${{ env.GOPATH }}/src/k8s.io/kops/go.mod' | |
- name: make kops examples test | |
working-directory: ${{ env.GOPATH }}/src/k8s.io/kops | |
run: | | |
make kops examples test | |
build-windows-amd64: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b | |
with: | |
path: ${{ env.GOPATH }}/src/k8s.io/kops | |
- name: Set up go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 | |
with: | |
go-version-file: '${{ env.GOPATH }}/src/k8s.io/kops/go.mod' | |
- name: make kops examples test | |
working-directory: ${{ env.GOPATH }}/src/k8s.io/kops | |
run: | | |
make kops examples test-windows | |
verify: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b | |
with: | |
path: ${{ env.GOPATH }}/src/k8s.io/kops | |
- name: Set up go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 | |
with: | |
go-version-file: '${{ env.GOPATH }}/src/k8s.io/kops/go.mod' | |
- name: make quick-ci | |
working-directory: ${{ env.GOPATH }}/src/k8s.io/kops | |
run: | | |
make quick-ci |