fix bugs in e2e testing and add kube feature gates #7
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: | |
- name: Set up go | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe | |
with: | |
go-version: '1.21.1' | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 | |
with: | |
path: ${{ env.GOPATH }}/src/k8s.io/kops | |
- 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: | |
- name: Set up go | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe | |
with: | |
go-version: '1.21.1' | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 | |
with: | |
path: ${{ env.GOPATH }}/src/k8s.io/kops | |
- 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: | |
- name: Set up go | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe | |
with: | |
go-version: '1.21.1' | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 | |
with: | |
path: ${{ env.GOPATH }}/src/k8s.io/kops | |
- 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: | |
- name: Set up go | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe | |
with: | |
go-version: '1.21.1' | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 | |
with: | |
path: ${{ env.GOPATH }}/src/k8s.io/kops | |
- name: make quick-ci | |
working-directory: ${{ env.GOPATH }}/src/k8s.io/kops | |
run: | | |
make quick-ci |