]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - .travis.yml
(quickfix) typo in openapi spec groups
[github/Chocobozzz/PeerTube.git] / .travis.yml
CommitLineData
2696b9af
C
1language: node_js
2
3node_js:
ce33ee01 4 - "8"
1eb6997e 5
5f7021c3
J
6git:
7 depth: 1
8
d22629bd
C
9addons:
10 apt:
11 sources:
12 - ubuntu-toolchain-r-test
13 packages:
3ae6376a 14 - g++-4.9
da268a97 15 postgresql: "9.4"
d22629bd 16
c1c86c15
C
17cache:
18 directories:
19 - $HOME/.cache/yarn
20 - $HOME/fixtures
bf57f073 21
6f1b0869 22sudo: false
2696b9af
C
23
24services:
da268a97 25 - postgresql
90dea7dc 26 - redis-server
37836274 27
393b5ab8
C
28install:
29 - CC=gcc-4.9 CXX=g++-4.9 yarn install
30
2696b9af 31before_script:
288178bf
C
32 - wget --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-4.0.2-64bit-static.tar.xz"
33 - tar xf ffmpeg-release-4.0.2-64bit-static.tar.xz
c8d90fdb 34 - mkdir -p $HOME/bin
5c617be4 35 - cp ffmpeg-*/{ffmpeg,ffprobe} $HOME/bin
c8d90fdb 36 - export PATH=$HOME/bin:$PATH
a25970cc 37 - psql -c "create user peertube with password 'peertube';" -U postgres
2696b9af 38
18530063
C
39matrix:
40 include:
98ec8b8e 41 - env: TEST_SUITE=misc
1297eb5d
C
42 - env: TEST_SUITE=api-1
43 - env: TEST_SUITE=api-2
44 - env: TEST_SUITE=api-3
26370ce4 45 - env: TEST_SUITE=api-4
18530063
C
46 - env: TEST_SUITE=cli
47 - env: TEST_SUITE=lint
7f5f4152 48 - env: TEST_SUITE=jest
18530063
C
49
50script:
365b546c 51 - travis_retry npm run travis -- "$TEST_SUITE"
18530063 52
2696b9af 53after_failure:
1eb6997e
C
54 - cat test1/logs/all-logs.log
55 - cat test2/logs/all-logs.log
56 - cat test3/logs/all-logs.log
e5993adc
C
57 - cat test4/logs/all-logs.log
58 - cat test5/logs/all-logs.log
59 - cat test6/logs/all-logs.log