diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2015-10-30 20:08:46 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2015-10-30 20:08:46 +0100 |
commit | 2696b9af9651dac45d8e945f1e9664b4cfd18dce (patch) | |
tree | 212d95321b8eef1c3ba24b1d677f61868e06a44d /.travis.yml | |
parent | 810ccd5e8caba2735b8843d1bb8347ebc9fbbbb8 (diff) | |
download | PeerTube-2696b9af9651dac45d8e945f1e9664b4cfd18dce.tar.gz PeerTube-2696b9af9651dac45d8e945f1e9664b4cfd18dce.tar.zst PeerTube-2696b9af9651dac45d8e945f1e9664b4cfd18dce.zip |
Add travis support
Squashed commit of the following:
commit f9a7a1fd51dd2c857fc52923be8f2e98f059f923
Author: Chocobozzz <florian.bigard@gmail.com>
Date: Fri Oct 30 20:05:20 2015 +0100
This is electron-prebuilt and not just electron
commit a2361482942abe4443c68e61fdcfea9bf35ede61
Author: Chocobozzz <florian.bigard@gmail.com>
Date: Fri Oct 30 19:58:56 2015 +0100
Let's try to change this option...
commit 7ee8bfa9bf34b0165a7ef51bc9397bf86ff54878
Author: Chocobozzz <florian.bigard@gmail.com>
Date: Fri Oct 30 19:39:23 2015 +0100
Explicitly say to generate a rsa key of length 2048
commit d3905aef92b537c395a9111d5d0c6f4da8b322ba
Author: Chocobozzz <florian.bigard@gmail.com>
Date: Fri Oct 30 19:22:46 2015 +0100
typo
commit 602cb774848da906ec693999484b618618f70846
Author: Chocobozzz <florian.bigard@gmail.com>
Date: Fri Oct 30 19:21:26 2015 +0100
Add after_failure, cache for grunt and electron
commit 79f7c7f7b7a9a0726de0b7b1af1cda69a4d401cc
Author: Chocobozzz <florian.bigard@gmail.com>
Date: Fri Oct 30 19:10:25 2015 +0100
increase timewait when uploading a video (for the federation)
commit 3c8dd590dd53ab2b069d6a52cd8e954156814304
Author: Chocobozzz <florian.bigard@gmail.com>
Date: Fri Oct 30 19:00:26 2015 +0100
install grunt-cli
commit 1b5d02fb067a7b4cde62a6dd5073b76e5f1ba269
Author: Chocobozzz <florian.bigard@gmail.com>
Date: Fri Oct 30 18:55:23 2015 +0100
Trigger travis build
commit ede965e1186c4dc25270c384f669f0d6749d2a9d
Author: Chocobozzz <florian.bigard@gmail.com>
Date: Fri Oct 30 18:52:08 2015 +0100
let's try travis
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..1729160f1 --- /dev/null +++ b/.travis.yml | |||
@@ -0,0 +1,24 @@ | |||
1 | language: node_js | ||
2 | |||
3 | node_js: | ||
4 | - "0.12" | ||
5 | |||
6 | sudo: false | ||
7 | |||
8 | services: | ||
9 | - mongodb | ||
10 | |||
11 | cache: | ||
12 | directories: | ||
13 | - node_modules | ||
14 | - $(npm config get prefix)/bin/grunt-cli | ||
15 | - $(npm config get prefix)/bin/electron-prebuilt | ||
16 | |||
17 | before_script: | ||
18 | - npm install electron-prebuilt -g | ||
19 | - npm install grunt-cli -g | ||
20 | |||
21 | after_failure: | ||
22 | - cat test1/logs/all-logs.log | ||
23 | - cat test2/logs/all-logs.log | ||
24 | - cat test3/logs/all-logs.log | ||