Created
December 31, 2017 12:29
-
-
Save oryband/f07ce20c921e53b37062170875944bdc to your computer and use it in GitHub Desktop.
Kin Mobile SDK on Ethereum - .travis.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: swift | |
osx_image: xcode9.1 | |
cache: | |
directories: | |
- node_modules | |
before_install: | |
# install node (npm), truffle, testrpc | |
- rm -rf ~/.nvm | |
- git clone https://github.com/creationix/nvm.git ~/.nvm | |
- source ~/.nvm/nvm.sh | |
- nvm install 8.9.1 | |
- node --version | |
- cd truffle | |
- npm install | |
- cd ../ | |
script: | |
- make test | |
after_script: | |
# print truffle and testrpc logs | |
- cat truffle/truffle.log | |
- cat truffle/testrpc.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment