mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
16 lines
376 B
YAML
16 lines
376 B
YAML
language: go
|
|
go:
|
|
- 1.7
|
|
|
|
env:
|
|
- GOPKG_PARENT=$HOME/gopath/src/github.com/kubernetes-incubator GOPKG_PATH=$GOPKG_PARENT/rktlet
|
|
|
|
before_install:
|
|
- 'if [ ! -d "${GOPKG_PARENT}" ]; then mkdir -p "${GOPKG_PARENT}"; fi'
|
|
- 'if [ ! -e "${GOPKG_PATH}" ]; then ln -s "${TRAVIS_BUILD_DIR}" "${GOPKG_PATH}"; fi'
|
|
script:
|
|
- cd "$GOPKG_PATH"
|
|
- make test-deps
|
|
- make test
|
|
- make
|