forked from elixirscript/elixirscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (25 loc) · 760 Bytes
/
.travis.yml
File metadata and controls
25 lines (25 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
sudo: false
language: elixir
elixir:
- 1.6.0
otp_release:
- 20.2
env:
- TRAVIS_NODE_VERSION="8"
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
- npm install -g yarn
- yarn
- mix local.hex --force
- mix local.rebar --force
- mix deps.get
script:
- make
- make test
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/fbd8944d285c0696dc41
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always