]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - .travis.yml
Remove useless commands from travis
[github/Chocobozzz/PeerTube.git] / .travis.yml
1 language: node_js
2
3 node_js:
4 - "4.5"
5 - "6.6"
6
7 sudo: false
8
9 services:
10 - mongodb
11
12 before_install: if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
13
14 before_script:
15 - npm run build
16 - wget --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-3.0.2-64bit-static.tar.xz"
17 - tar xf ffmpeg-release-3.0.2-64bit-static.tar.xz
18 - mkdir -p $HOME/bin
19 - cp ffmpeg-*-64bit-static/{ffmpeg,ffprobe,ffserver} $HOME/bin
20 - export PATH=$HOME/bin:$PATH
21 - export NODE_TEST_IMAGE=true
22
23 after_failure:
24 - cat test1/logs/all-logs.log
25 - cat test2/logs/all-logs.log
26 - cat test3/logs/all-logs.log
27 - cat test4/logs/all-logs.log
28 - cat test5/logs/all-logs.log
29 - cat test6/logs/all-logs.log