Skip to content

Commit

Permalink
Merge pull request kubernetes#13300 from soltysh/make_verify2
Browse files Browse the repository at this point in the history
Auto commit by PR queue bot
  • Loading branch information
k8s-merge-robot committed Aug 31, 2015
2 parents de60651 + 053b673 commit fc5604e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 21 deletions.
11 changes: 1 addition & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,7 @@ install:
- export PATH=$GOPATH/bin:./third_party/etcd:$PATH

script:
- ./hack/verify-gofmt.sh
- ./hack/verify-boilerplate.sh
- ./hack/verify-description.sh
- ./hack/verify-generated-conversions.sh
- ./hack/verify-generated-deep-copies.sh
- ./hack/verify-generated-docs.sh
- ./hack/verify-swagger-spec.sh
- ./hack/verify-linkcheck.sh
- ./hack/verify-flags-underscore.py
- ./hack/verify-godeps.sh $TRAVIS_BRANCH
- make verify BRANCH=$TRAVIS_BRANCH

notifications:
irc: "chat.freenode.net#kubernetes-dev"
Expand Down
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,12 @@ all:

# Runs all the presubmission verifications.
#
# Args:
# BRANCH: Branch to be passed to hack/verify-godeps.sh script.
#
# Example:
# make verify
# make verify BRANCH=branch_x
verify:
hack/verify-gofmt.sh
hack/verify-boilerplate.sh
Expand All @@ -46,7 +50,7 @@ verify:
hack/verify-swagger-spec.sh
hack/verify-linkcheck.sh
hack/verify-flags-underscore.py
hack/verify-godeps.sh
hack/verify-godeps.sh $(BRANCH)
.PHONY: verify

# Build and run tests.
Expand Down
11 changes: 1 addition & 10 deletions shippable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,8 @@ install:
- ./hack/build-go.sh
- godep go install ./...
- ./hack/travis/install-etcd.sh
- ./hack/verify-gofmt.sh
- ./hack/verify-boilerplate.sh
- ./hack/verify-description.sh
- ./hack/verify-flags-underscore.py
- ./hack/verify-godeps.sh ${BASE_BRANCH}
- ./hack/travis/install-std-race.sh
- ./hack/verify-generated-conversions.sh
- ./hack/verify-generated-deep-copies.sh
- ./hack/verify-generated-docs.sh
- ./hack/verify-swagger-spec.sh
- ./hack/verify-linkcheck.sh
- make verify BRANCH=${BASE_BRANCH}

script:
# Disable coverage collection on pull requests
Expand Down

0 comments on commit fc5604e

Please sign in to comment.