summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-01-25 02:52:13 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-01-25 02:52:13 +0000
commit67cf3951633dd4c8444c6460ac94310e382f82f3 (patch)
treef3377d821530fe6ff22838d2d70f516d49e0b788 /.travis.yml
parent42636861d8ccd8d161654f4dfadf7a3632c20c14 (diff)
Disable the autotools build in PR builds.
We will only build this during the nightly build. It's very rare for the autotools build to break when the cmake build does not.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 5100e0a2..0e56ad7b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,8 +9,8 @@ language: c
9matrix: 9matrix:
10 include: 10 include:
11 - stage: "Stage 1" 11 - stage: "Stage 1"
12 env: JOB=autotools ENV=linux 12 env: JOB=toxcore ENV=linux
13 compiler: gcc 13 compiler: clang
14 addons: 14 addons:
15 apt: &apt-dependencies 15 apt: &apt-dependencies
16 sources: 16 sources:
@@ -32,8 +32,9 @@ matrix:
32 - portaudio19-dev # For av_test. 32 - portaudio19-dev # For av_test.
33 - texinfo # For libconfig. 33 - texinfo # For libconfig.
34 - stage: "Stage 1" 34 - stage: "Stage 1"
35 env: JOB=toxcore ENV=linux 35 if: type IN (push, api, cron)
36 compiler: clang 36 env: JOB=autotools ENV=linux
37 compiler: gcc
37 addons: 38 addons:
38 apt: *apt-dependencies 39 apt: *apt-dependencies
39 - stage: "Stage 1" 40 - stage: "Stage 1"