added semver maker and two chaos experiments

Signed-off-by: rajdas <mail.rajdas@gmail.com>
This commit is contained in:
rajdas
2019-09-25 16:45:06 +05:30
parent 96af29bba5
commit 493848da5c
10 changed files with 353 additions and 1 deletions

8
.travis.yml Normal file
View File

@@ -0,0 +1,8 @@
sudo: required
dist: xenial # ubuntu 16.04 distro
script:
# runs only when PR is merged
- if [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then make versionmaker; fi
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