Skip to content

Commit

Permalink
fix(ci) clone Kong using http not ssh (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
hutchic authored Jan 8, 2019
1 parent 6558971 commit fe4602c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ matrix:
- env: PACKAGE_TYPE=deb RESTY_IMAGE_BASE=debian RESTY_IMAGE_TAG=testing

install:
- git clone --single-branch -b next git@github.com:Kong/kong.git kong
- git clone --single-branch -b next https://github.com/Kong/kong.git kong
- make package-kong

before_script:
Expand All @@ -49,4 +49,5 @@ before_script:
- JSONPATH='{range .items[*]}{@.metadata.name}:{range @.status.conditions[*]}{@.type}={@.status};{end}{end}'; until kubectl get nodes -o jsonpath="$JSONPATH" 2>&1 | grep -q "Ready=True"; do sleep 1; done

script:
- make test
- make test

0 comments on commit fe4602c

Please sign in to comment.