forked from kanisterio/kanister
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[kanister] moving testing to travisCI (kanisterio#2597)
* [kanister] moving testing to travisCI * changing badge to travis * using glide bin instead of apt-get * typo tag -> tar
- Loading branch information
Showing
3 changed files
with
29 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
sudo: required | ||
services: | ||
- docker | ||
|
||
language: go | ||
|
||
go: | ||
- "1.10.x" | ||
|
||
# This moves Kubernetes specific config files. | ||
env: | ||
- CHANGE_MINIKUBE_NONE_USER=true | ||
|
||
before_install: | ||
- sudo bash build/local_kubernetes.sh get_minikube | ||
- wget --progress=dot:mega https://storage.googleapis.com/kubernetes-release/release/v1.8.4/bin/linux/amd64/kubectl | ||
- sudo chmod +x kubectl | ||
- sudo mv kubectl /usr/local/bin/kubectl | ||
- wget --progress=dot:mega https://github.com/Masterminds/glide/releases/download/v0.13.1/glide-v0.13.1-linux-amd64.tar.gz -O glide.tar.gz | ||
- tar zxfp glide.tar.gz linux-amd64/glide --strip=1 | ||
- sudo mv glide /usr/local/bin/glide | ||
|
||
script: | ||
- make build DOCKER_BUILD=false | ||
- make docs | ||
- sudo bash build/local_kubernetes.sh start_minikube | ||
- make test DOCKER_BUILD=false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.