mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
59a39e9a3b
Addresses k3s-io/k3s#3066 and CVE-2021-21334 Signed-off-by: Jacob Blain Christen <jacob@rancher.com>
28 lines
648 B
YAML
28 lines
648 B
YAML
language: go
|
|
go:
|
|
- "1.12.x"
|
|
- "1.13.x"
|
|
|
|
go_import_path: github.com/containerd/console
|
|
|
|
env:
|
|
- GO111MODULE=on
|
|
|
|
install:
|
|
- 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/
|
|
- travis_wait ../project/script/validate/vendor
|
|
- go test -race
|
|
- GOOS=openbsd go build
|
|
- GOOS=openbsd go test -c
|
|
- GOOS=solaris go build
|
|
- GOOS=solaris go test -c
|
|
- GOOS=windows go test
|