bump go version to 1.15
Signed-off-by: pigletfly wangbing.adam@gmail.com Signed-off-by: pigletfly <wangbing.adam@gmail.com>
This commit is contained in:
parent
08f3ef9995
commit
03c3016037
|
@ -14,7 +14,7 @@ jobs:
|
||||||
- name: install Go
|
- name: install Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.14.x
|
go-version: 1.15.x
|
||||||
- name: lint
|
- name: lint
|
||||||
run: hack/verify-staticcheck.sh
|
run: hack/verify-staticcheck.sh
|
||||||
codegen:
|
codegen:
|
||||||
|
@ -26,7 +26,7 @@ jobs:
|
||||||
- name: install Go
|
- name: install Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.14.x
|
go-version: 1.15.x
|
||||||
- name: verify codegen
|
- name: verify codegen
|
||||||
run: hack/verify-codegen.sh
|
run: hack/verify-codegen.sh
|
||||||
- name: verify crdgen
|
- name: verify crdgen
|
||||||
|
@ -45,7 +45,7 @@ jobs:
|
||||||
- name: install Go
|
- name: install Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.14.x
|
go-version: 1.15.x
|
||||||
- name: compile
|
- name: compile
|
||||||
run: make all
|
run: make all
|
||||||
test:
|
test:
|
||||||
|
@ -58,7 +58,7 @@ jobs:
|
||||||
- name: install Go
|
- name: install Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.14.x
|
go-version: 1.15.x
|
||||||
- name: make test
|
- name: make test
|
||||||
run: make test
|
run: make test
|
||||||
e2e:
|
e2e:
|
||||||
|
@ -75,7 +75,7 @@ jobs:
|
||||||
- name: install Go
|
- name: install Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.14.x
|
go-version: 1.15.x
|
||||||
- name: setup e2e test environment
|
- name: setup e2e test environment
|
||||||
run: hack/karmada-bootstrap.sh
|
run: hack/karmada-bootstrap.sh
|
||||||
- name: run e2e
|
- name: run e2e
|
||||||
|
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
- name: install Go
|
- name: install Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.14.x
|
go-version: 1.15.x
|
||||||
- name: build images
|
- name: build images
|
||||||
env:
|
env:
|
||||||
REGISTRY: ${{secrets.SWR_REGISTRY}}
|
REGISTRY: ${{secrets.SWR_REGISTRY}}
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,6 +1,6 @@
|
||||||
module github.com/karmada-io/karmada
|
module github.com/karmada-io/karmada
|
||||||
|
|
||||||
go 1.14
|
go 1.15
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/distribution/distribution/v3 v3.0.0-20210507173845-9329f6a62b67
|
github.com/distribution/distribution/v3 v3.0.0-20210507173845-9329f6a62b67
|
||||||
|
|
Loading…
Reference in New Issue