forked from google-deepmind/torch-hdf5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
29 lines (24 loc) · 785 Bytes
/
.travis.yml
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
26
27
28
29
language: erlang
env:
- LUA="th"
branches:
only:
- master
install:
- echo "==== Installing gfortran ===="
- sudo apt-get install gfortran
- echo "==== Installing hdf5 ===="
- sudo apt-get install libhdf5-serial-dev hdf5-tools
- echo "==== Installing dependencies ===="
- curl -skL https://raw.github.com/torch/ezinstall/master/install-deps | sudo bash
- echo "==== Installing Torch ===="
- curl -skL https://raw.github.com/torch/ezinstall/master/install-luajit+torch | sudo bash
- echo "==== Building torch-hdf5, using luarocks ===="
- sudo /usr/local/bin/luarocks make
script: 'for x in tests/test*.lua ; do echo "==== $x ====" ; th $x ; done'
notifications:
recipients:
email:
on_success: change
on_failure: always