-
Notifications
You must be signed in to change notification settings - Fork 220
show monocular version in ui #337
show monocular version in ui #337
Conversation
.travis.yml
Outdated
@@ -19,6 +19,10 @@ before_install: | |||
install: | |||
- make -C src/api bootstrap | |||
- make -C src/ui install | |||
- | | |||
if [[ -n "$TRAVIS_TAG" ]]; then |
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.
cc @sameersbn this will work as intended, right?
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.
I think you meant to write
make -C src/ui VERSION=$TRAVIS_TAG set-version
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.
As an aside, if you want to git rid of the inline bash from travis, then you could replace the VERSION ?= dev
assignment in the Makefile with.
ifeq "$(VERSION)" ""
override VERSION = dev
endif
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.
oops good catch, thanks
.travis.yml
Outdated
@@ -19,6 +19,10 @@ before_install: | |||
install: | |||
- make -C src/api bootstrap | |||
- make -C src/ui install | |||
- | | |||
if [[ -n "$TRAVIS_TAG" ]]; then |
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.
As an aside, if you want to git rid of the inline bash from travis, then you could replace the VERSION ?= dev
assignment in the Makefile with.
ifeq "$(VERSION)" ""
override VERSION = dev
endif
@sameersbn PTAL! |
Codecov Report
@@ Coverage Diff @@
## master #337 +/- ##
=======================================
Coverage 88.41% 88.41%
=======================================
Files 17 17
Lines 820 820
=======================================
Hits 725 725
Misses 61 61
Partials 34 34 Continue to review full report at Codecov.
|
closes #316