mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-01-26 05:14:13 +01:00
Enable a build matrix in Travis CI to run the e2e tests against multiple k8s versions. Additionally update kind to v0.7.0 which adds support for k8s v1.17. Replaced command "kind get kubeconfig-path" with "kind get kubeconfig" because the "kubeconfig-path" subcommand is not valid with kind v0.7.0.
32 lines
995 B
YAML
32 lines
995 B
YAML
sudo: false
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.13.x
|
|
env:
|
|
- K8S_VERSION=v1.17.0
|
|
- K8S_VERSION=v1.16.4
|
|
- K8S_VERSION=v1.15.7
|
|
services:
|
|
- docker
|
|
before_script:
|
|
- curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
|
|
- wget https://github.com/kubernetes-sigs/kind/releases/download/v0.7.0/kind-linux-amd64
|
|
- chmod +x kind-linux-amd64
|
|
- mv kind-linux-amd64 kind
|
|
- export PATH=$PATH:$PWD
|
|
- kind create cluster --image kindest/node:${K8S_VERSION} --config=$TRAVIS_BUILD_DIR/hack/kind_config.yaml
|
|
- export KUBECONFIG="$(kind get kubeconfig-path)"
|
|
- docker pull kubernetes/pause
|
|
- kind load docker-image kubernetes/pause
|
|
- kind get kubeconfig > /tmp/admin.conf
|
|
script:
|
|
- mkdir -p ~/gopath/src/sigs.k8s.io/
|
|
- mv ~/gopath/src/github.com/kubernetes-sigs/descheduler ~/gopath/src/sigs.k8s.io/.
|
|
- hack/verify-gofmt.sh
|
|
- make lint
|
|
- make build
|
|
- make test-unit
|
|
- make test-e2e
|