summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAndor Penzes <andor.penzes@gmail.com>2016-01-27 01:05:21 +0100
committerAndor Penzes <andor.penzes@gmail.com>2016-01-27 01:05:21 +0100
commit6e631e6630517d8d0504ce1beac94c0f776c7344 (patch)
tree6fd8ca81d59b8d295ee6acc63a51c462fa2a2b56 /.travis.yml
parent0a09ab37b58ba9a1d0d2c210ffabf5fcce3aa95a (diff)
Trick travis to use build matrix
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 2483ed84..565fd860 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,5 +1,8 @@
1 1
2language: c 2language: python
3python:
4 - "2.6"
5 - "2.7"
3 6
4sudo: required 7sudo: required
5services: 8services:
@@ -8,12 +11,12 @@ services:
8matrix: 11matrix:
9 fast_finish: true 12 fast_finish: true
10 include: 13 include:
11 - c: gcc 14 - python: 2.6
12 env: BUILD_TYPE=build 15 env: BUILD_TYPE=build
13 - c: clang 16 - python: 2.7
14 env: BUILD_TYPE=profile 17 env: BUILD_TYPE=profile
15 allow_failures: 18 allow_failures:
16 - c: clang 19 - python: 2.7
17 20
18before_install: 21before_install:
19 - grep '\(MemTotal\|SwapTotal\)' /proc/meminfo 22 - grep '\(MemTotal\|SwapTotal\)' /proc/meminfo