mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
93b18b343a
* Update to Kubernetes v1.20.5
* vendor: bumps for some containerd deps
* go: bump to 1.16.2 for arm
Signed-off-by: Jacob Blain Christen <jacob@rancher.com>
(cherry picked from commit 355fff3017
)
24 lines
617 B
YAML
24 lines
617 B
YAML
dist: bionic
|
|
language: go
|
|
|
|
go:
|
|
- "1.13.x"
|
|
|
|
install:
|
|
# Don't change local go.{mod, sum} by go get tools.
|
|
#
|
|
# ref: https://github.com/golang/go/issues/27643
|
|
- pushd ..; go get -u github.com/vbatts/git-validation; popd
|
|
- pushd ..; go get -u github.com/kunalkushwaha/ltag; popd
|
|
|
|
before_script:
|
|
- pushd ..; git clone https://github.com/containerd/project; popd
|
|
|
|
script:
|
|
- DCO_VERBOSITY=-q ../project/script/validate/dco
|
|
- ../project/script/validate/fileheader ../project/
|
|
- go test -v -race -covermode=atomic -coverprofile=coverage.txt ./...
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|