Ignore generated files by autotools
[tor/appveyor.git] / .travis.yml
blobfa8536def5db19f4e28f5ae7c8817f8f93ffbd8d
1 language: c
3 ## Comment out the compiler list for now to allow an explicit build
4 ## matrix.
5 # compiler:
6 #   - gcc
7 #   - clang
9 notifications:
10   irc:
11     channels:
12       - "irc.oftc.net#tor-ci"
13     template:
14       - "%{repository} %{branch} %{commit} - %{author}: %{commit_subject}"
15       - "Build #%{build_number} %{result}. Details: %{build_url}"
16     on_success: change
17     on_failure: change
18   email:
19     on_success: never
20     on_failure: change
22 os:
23   - linux
24   ## Uncomment the following line to also run the entire build matrix on OSX.
25   ## This will make your CI builds take roughly ten times longer to finish.
26   # - osx
28 ## Use the Ubuntu Trusty images.
29 dist: trusty
31 ## We don't need sudo. (The "apt:" stanza after this allows us to not need sudo;
32 ## otherwise, we would need it for getting dependencies.)
34 ## We override this in the explicit build matrix to work around a
35 ## Travis CI environment regression
36 ## https://github.com/travis-ci/travis-ci/issues/9033
37 sudo: false
39 ## (Linux only) Download our dependencies
40 addons:
41   apt:
42     packages:
43       ## Required dependencies
44       - libevent-dev
45       - libseccomp2
46       - zlib1g-dev
47       ## Optional dependencies
48       - liblzma-dev
49       - libscrypt-dev
50       ## zstd doesn't exist in Ubuntu Trusty
51       #- libzstd
53 ## The build matrix in the following two stanzas expands into four builds (per OS):
55 ##  * with GCC, with Rust
56 ##  * with GCC, without Rust
57 ##  * with Clang, with Rust
58 ##  * with Clang, without Rust
59 env:
60   global:
61     ## The Travis CI environment allows us two cores, so let's use both.
62     - MAKEFLAGS="-j 2"
63   matrix:
64     ## Leave at least one entry here or Travis seems to generate a
65     ## matrix entry with empty matrix environment variables.  Leaving
66     ## more than one entry causes unwanted matrix entries with
67     ## unspecified compilers.
68     - RUST_OPTIONS="--enable-rust --enable-cargo-online-mode"
69     # - RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
70     # - RUST_OPTIONS=""
72 matrix:
73   ## Uncomment to allow the build to report success (with non-required
74   ## sub-builds continuing to run) if all required sub-builds have
75   ## succeeded.  This is somewhat buggy currently: it can cause
76   ## duplicate notifications and prematurely report success if a
77   ## single sub-build has succeeded.  See
78   ## https://github.com/travis-ci/travis-ci/issues/1696
79   # fast_finish: true
81   ## Uncomment the appropriate lines below to allow the build to
82   ## report success even if some less-critical sub-builds fail and it
83   ## seems likely to take a while for someone to fix it.  Currently
84   ## Travis CI doesn't distinguish "all builds succeeded" from "some
85   ## non-required sub-builds failed" except on the individual build's
86   ## page, which makes it somewhat annoying to detect from the
87   ## branches and build history pages.  See
88   ## https://github.com/travis-ci/travis-ci/issues/8716
89   allow_failures:
90     # - env: RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
91     # - env: RUST_OPTIONS="--enable-rust --enable-cargo-online-mode
92     # - compiler: clang
94   ## Create explicit matrix entries to work around a Travis CI
95   ## environment issue.  Missing keys inherit from the first list
96   ## entry under that key outside the "include" clause.
97   include:
98     - compiler: gcc
99     - compiler: gcc
100       env: RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
101     - compiler: gcc
102       env: RUST_OPTIONS=""
103     ## The "sudo: required" forces non-containerized builds, working
104     ## around a Travis CI environment issue: clang LeakAnalyzer fails
105     ## because it requires ptrace and the containerized environment no
106     ## longer allows ptrace.
107     - compiler: clang
108       sudo: required
109     - compiler: clang
110       sudo: required
111       env: RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
112     - compiler: clang
113       sudo: required
114       env: RUST_OPTIONS=""
116 before_install:
117   ## If we're on OSX, homebrew usually needs to updated first
118   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
119   ## Download rustup
120   - if [[ "$RUST_OPTIONS" != "" ]]; then curl -Ssf -o rustup.sh https://sh.rustup.rs; fi
122 install:
123   ## If we're on OSX use brew to install required dependencies (for Linux, see the "apt:" section above)
124   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated openssl    || brew upgrade openssl;    }; fi
125   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated libevent   || brew upgrade libevent;   }; fi
126   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated pkg-config || brew upgrade pkg-config; }; fi
127   ## If we're on OSX also install the optional dependencies
128   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated xz         || brew upgrade xz;         }; fi
129   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated libscrypt  || brew upgrade libscrypt;  }; fi
130   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated zstd       || brew upgrade zstd;       }; fi
131   ## Install the nightly channels of rustc and cargo and setup our toolchain environment
132   - if [[ "$RUST_OPTIONS" != "" ]]; then sh rustup.sh -y --default-toolchain nightly; fi
133   - if [[ "$RUST_OPTIONS" != "" ]]; then source $HOME/.cargo/env; fi
134   ## Get some info about rustc and cargo
135   - if [[ "$RUST_OPTIONS" != "" ]]; then which rustc; fi
136   - if [[ "$RUST_OPTIONS" != "" ]]; then which cargo; fi
137   - if [[ "$RUST_OPTIONS" != "" ]]; then rustc --version; fi
138   - if [[ "$RUST_OPTIONS" != "" ]]; then cargo --version; fi
139   ## If we're testing rust builds in offline-mode, then set up our vendored dependencies
140   - if [[ "$RUST_OPTIONS" == "--enable-rust" ]]; then git submodule init  ; fi
141   - if [[ "$RUST_OPTIONS" == "--enable-rust" ]]; then git submodule update; fi
142   - if [[ "$TOR_RUST_DEPENDENCIES" == "true" ]]; then export TOR_RUST_DEPENDENCIES=$PWD/src/ext/rust/crates; fi
144 script:
145   - ./autogen.sh
146   - ./configure $RUST_OPTIONS --disable-asciidoc --enable-fatal-warnings --disable-silent-rules --enable-fragile-hardening
147   ## We run `make check` because that's what https://jenkins.torproject.org does.
148   - make check
150 after_failure:
151   ## `make check` will leave a log file with more details of test failures.
152   - cat test-suite.log