X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.travis.yml;h=ecb44c514dae9daf6e97fc041a21084a0d1a9f98;hb=191764f30b0a812bf3a9dbdc7daf1d5afe25e12a;hp=5c207a470bc60efdaa2ecf8faeb80dda846adbd4;hpb=a8750eb5826eeda9720eb95b493a3c1f80f91cbb;p=github%2FChocobozzz%2FPeerTube.git diff --git a/.travis.yml b/.travis.yml index 5c207a470..ecb44c514 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,30 +1,48 @@ language: node_js node_js: - - "4.2" - - "5.1" + - "8" -env: - - CXX=g++-4.8 +git: + depth: 1 addons: apt: sources: - ubuntu-toolchain-r-test packages: - - g++-4.8 + - g++-4.9 + postgresql: "9.4" -sudo: true +cache: yarn + +sudo: false services: - - mongodb + - postgresql + - redis-server + +install: + - CC=gcc-4.9 CXX=g++-4.9 yarn install before_script: - - npm install electron-prebuilt -g - - npm run build - - sudo add-apt-repository ppa:mc3man/trusty-media -y - - sudo apt-get update -q - - sudo apt-get install ffmpeg -y + - wget --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-4.0.2-64bit-static.tar.xz" + - tar xf ffmpeg-release-4.0.2-64bit-static.tar.xz + - mkdir -p $HOME/bin + - cp ffmpeg-*/{ffmpeg,ffprobe} $HOME/bin + - export PATH=$HOME/bin:$PATH + - psql -c "create user peertube with password 'peertube';" -U postgres + +matrix: + include: + - env: TEST_SUITE=misc + - env: TEST_SUITE=api-fast + - env: TEST_SUITE=api-slow + - env: TEST_SUITE=cli + - env: TEST_SUITE=lint + +script: + - travis_retry npm run travis -- "$TEST_SUITE" after_failure: - cat test1/logs/all-logs.log