X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.travis.yml;h=78e25cf4548870a14b36492b9f174865cc05a491;hb=b6314e3cee2ec9d9f7894fe057cfa7e9d0c50fbc;hp=5c207a470bc60efdaa2ecf8faeb80dda846adbd4;hpb=a8750eb5826eeda9720eb95b493a3c1f80f91cbb;p=github%2FChocobozzz%2FPeerTube.git diff --git a/.travis.yml b/.travis.yml index 5c207a470..78e25cf45 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,30 +1,49 @@ 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-1 + - env: TEST_SUITE=api-2 + - env: TEST_SUITE=api-3 + - env: TEST_SUITE=cli + - env: TEST_SUITE=lint + +script: + - travis_retry npm run travis -- "$TEST_SUITE" after_failure: - cat test1/logs/all-logs.log