-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Import bnsapi #1
Conversation
.travis.yml
Outdated
@@ -60,7 +61,6 @@ script: | |||
- unset TRAVIS_COMMIT_MESSAGE && printenv | grep -Ev "PATH|path|GEM" > env.list | |||
- export TRAVIS_COMMIT_MESSAGE=`cat commit.msg` && rm -rf commit.msg | |||
- docker run -it --rm --env-file env.list -v "$(pwd):/usr/src/app" iov1ops/danger:latest > danger.out; cat danger.out | |||
- make docker |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why drop docker? We will need a docker image for bnsapi
.
Makefile
Outdated
@@ -23,9 +23,6 @@ all: test lint | |||
dist: | |||
for ex in $(TOOLS); do cd $$ex && make dist && cd -; done | |||
|
|||
dockerhub: | |||
for ex in $(TOOLS); do cd $$ex && make dockerhub && cd -; done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It'd better to alter TOOLS
than to drop the dockerhub
target, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is not very easy to use makefile for travis builds. I was trying stuff.
This reverts commit 45b8cd1.
No description provided.