Files
litmus-hub/.travis.yml
Shubham Chaudhary 7fc3b067c5 chore(combine-crs): skip redundant experiment CR (#380)
* chore(combine-crs): skip redundant experiment CR

Signed-off-by: shubhamchaudhary <shubham.chaudhary@mayadata.io>

* chore(combine-crs): updating category charts

Signed-off-by: shubhamchaudhary <shubham.chaudhary@mayadata.io>
2020-11-14 17:43:34 +05:30

14 lines
444 B
YAML

dist: bionic
language: go
go:
- 1.14.2
script:
# Install dependencies
- make deps
# It will ignore if travis ci committed, else works as it is.
#- author=`git log -1 --pretty=format:'%an'` && if [[ "$author" != "Travis CI" ]]; then make versionmaker; fi
- make combineExpCR
after_success:
# runs only when PR is merged and push the version file to master version
- if [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then make push; fi