-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into enhancement/apt
- Loading branch information
Showing
2,941 changed files
with
317,631 additions
and
227,206 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.2.0 | ||
2.2.0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
--- | ||
name: build | ||
|
||
'on': | ||
- push | ||
- pull_request | ||
|
||
env: | ||
GOPROXY: https://proxy.golang.org | ||
GOPATH: ${{ github.workspace }}/go | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-18.04, macos-10.15] | ||
go: [1.13, 1.14] | ||
exclude: | ||
- os: macos-10.15 | ||
go: 1.14 | ||
fail-fast: true | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Set up go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
id: go | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
path: ${{ env.GOPATH }}/src/k8s.io/kops | ||
|
||
- name: make nodeup examples test | ||
working-directory: ${{ env.GOPATH }}/src/k8s.io/kops | ||
run: | | ||
make nodeup examples test | ||
verify: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-18.04] | ||
go: [1.13] | ||
fail-fast: true | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Set up go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
id: go | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
path: ${{ env.GOPATH }}/src/k8s.io/kops | ||
|
||
- name: make travis-ci | ||
working-directory: ${{ env.GOPATH }}/src/k8s.io/kops | ||
run: | | ||
make travis-ci |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,34 @@ | ||
language: go | ||
arch: | ||
- amd64 | ||
- arm64 | ||
os: | ||
- linux | ||
- osx | ||
go: | ||
# 1.12 is now best-effort; we recommend 1.13 | ||
- "1.12" | ||
- "1.13" | ||
- 1.13.x | ||
- 1.14.x | ||
|
||
go_import_path: k8s.io/kops | ||
|
||
script: | ||
- GOPROXY=https://proxy.golang.org make nodeup examples test | ||
- GOPROXY=https://proxy.golang.org travis_wait 30 make nodeup examples test | ||
|
||
jobs: | ||
allow_failures: | ||
- arch: arm64 | ||
|
||
exclude: | ||
- os: osx | ||
go: "1.12" | ||
go: 1.13.x | ||
- os: linux | ||
go: 1.13.x | ||
arch: arm64 | ||
|
||
include: | ||
- name: Verify | ||
arch: amd64 | ||
os: linux | ||
go: "1.13" | ||
go: 1.13.x | ||
script: | ||
- GOPROXY=https://proxy.golang.org make travis-ci |
Oops, something went wrong.