Merge branch 'maint-0.4.0' into maint-0.4.1
[tor.git] / .travis.yml
blob1aa4cde98b53807c214f205f6d2c4f64bd0923d9
1 language: c
3 cache:
4   ccache: true
5   ## cargo: true
6   directories:
7     - $HOME/.cargo
8     ## caching CARGO_TARGET_DIR actually slows down the build over time,
9     ## because old build products are never deleted.
10     ## where we point CARGO_TARGET_DIR in all our cargo invocations
11     #- $TRAVIS_BUILD_DIR/src/rust/target
13 compiler:
14   - gcc
16 os:
17   - linux
19 ## We don't use the build matrix cross-product, because it makes too many jobs
20 ## Instead, we list each job under matrix: include:
21 env:
22   global:
23     ## The Travis CI environment allows us two cores, so let's use both.  Also,
24     ## let's use the "-k" flag so that we get all of the compilation failures,
25     ## not just the first one.
26     - MAKEFLAGS="-k -j 2"
27     ## We turn on hardening by default
28     ## Also known as --enable-fragile-hardening in 0.3.0.3-alpha and later
29     - HARDENING_OPTIONS="--enable-expensive-hardening"
30     ## We turn off asciidoc by default, because it's slow
31     - ASCIIDOC_OPTIONS="--disable-asciidoc"
32   matrix:
33     ## This matrix entry is required, but it doesn't actually create any jobs
34     -
36 matrix:
37   ## include creates builds with gcc, linux, unless we override those defaults
38   include:
39     ## We run basic tests on macOS
40     - compiler: clang
41       os: osx
42       ## Turn off some newer features, turn on clang's -Wtypedef-redefinition
43       env: C_DIALECT_OPTIONS="-std=gnu99"
44     ## We check NSS
45     ## Use -std=gnu99 to turn off some newer features, and maybe turn on some
46     ## extra gcc warnings?
47     - env: NSS_OPTIONS="--enable-nss" C_DIALECT_OPTIONS="-std=gnu99"
48     ## We run chutney on Linux, because it's faster than chutney on macOS
49     ## Chutney is a fast job, clang is slower on Linux, so we do Chutney clang
50     - env: CHUTNEY="yes" CHUTNEY_ALLOW_FAILURES="2" SKIP_MAKE_CHECK="yes"
51       compiler: clang
52       ## (Linux only) Use an older Linux image (Ubuntu Trusty)
53       ## The Xenial and Bionic images cause permissions issues for chutney,
54       ## this is a workaround, until we fix #32240.
55       dist: trusty
56     ## We check asciidoc with distcheck, to make sure we remove doc products
57     ## We use Linux clang, because there are no other Linux clang jobs
58     - env: DISTCHECK="yes" ASCIIDOC_OPTIONS="" SKIP_MAKE_CHECK="yes"
59       compiler: clang
60     ## We include a single coverage build with the best options for coverage
61     - env: COVERAGE_OPTIONS="--enable-coverage" HARDENING_OPTIONS="" TOR_TEST_RNG_SEED="636f766572616765"
62     ## We run rust on Linux, because it's faster than rust on macOS
63     ## We check rust offline
64     - env: RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
65     ## We check asciidoc with distcheck, to make sure we remove doc products
66     - env: DISTCHECK="yes" ASCIIDOC_OPTIONS="" SKIP_MAKE_CHECK="yes"
67     ## We check disable module dirauth
68     - env: MODULES_OPTIONS="--disable-module-dirauth"
69     ## We run rust on macOS, because we have seen macOS rust failures before
70     # Disabled due to slow Travis macOS builds, see #32177
71     #- env: RUST_OPTIONS="--enable-rust --enable-cargo-online-mode"
72     #  compiler: clang
73     #  os: osx
74     ## We run chutney on macOS, because macOS Travis has IPv6
75     # Disabled due to slow Travis macOS builds, see #32177
76     #- env: CHUTNEY="yes" CHUTNEY_ALLOW_FAILURES="2" SKIP_MAKE_CHECK="yes"
77     #  os: osx
78     ## We clone our stem repo and run `make test-stem`
79     - env: TEST_STEM="yes" SKIP_MAKE_CHECK="yes"
81   ## Allow the build to report success (with non-required sub-builds
82   ## continuing to run) if all required sub-builds have succeeded.
83   fast_finish: true
85   ## Careful! We use global envs, which makes it hard to allow failures by env:
86   ## https://docs.travis-ci.com/user/customizing-the-build#matching-jobs-with-allow_failures
87   allow_failures:
88     ## macOS rust and chutney are very slow, so we let the build finish before
89     ## they are done.  We'd like to fast finish, but still eventually show
90     ## any failures in the build status. But Travis doesn't have that ability.
91     - env: RUST_OPTIONS="--enable-rust --enable-cargo-online-mode"
92       compiler: clang
93       os: osx
94     - env: CHUTNEY="yes" CHUTNEY_ALLOW_FAILURES="2" SKIP_MAKE_CHECK="yes"
95       os: osx
96     ## test-stem sometimes hangs on Travis
97     - env: TEST_STEM="yes" SKIP_MAKE_CHECK="yes"
99 ## (Linux only) Use a recent Linux image (Ubuntu Bionic)
100 dist: bionic
102 ## Download our dependencies
103 addons:
104   ## (Linux only)
105   apt:
106     packages:
107       ## Required dependencies
108       - libevent-dev
109       ## Ubuntu comes with OpenSSL by default
110       #- libssl-dev
111       - zlib1g-dev
112       ## Optional dependencies
113       - libcap-dev
114       - liblzma-dev
115       - libnss3-dev
116       - libscrypt-dev
117       - libseccomp-dev
118       ## zstd doesn't exist in Ubuntu Trusty
119       #- libzstd
120       - shellcheck
121       ## Conditional build dependencies
122       ## Always installed, so we don't need sudo
123       - asciidoc
124       - docbook-xsl
125       - docbook-xml
126       - xmlto
127       ## Utilities
128       ## preventing or diagnosing hangs
129       - timelimit
130   ## (OSX only)
131   homebrew:
132     packages:
133       ## Required dependencies
134       - libevent
135       ## The OSX version of OpenSSL is way too old
136       - openssl
137       ## OSX comes with zlib by default
138       ## to use a newer zlib, pass the keg path to configure (like OpenSSL)
139       #- zlib
140       ## Optional dependencies
141       - libscrypt
142       - xz
143       - zstd
144       ## Required build dependencies
145       ## Tor needs pkg-config to find some dependencies at build time
146       - pkg-config
147       ## Optional build dependencies
148       - ccache
149       - shellcheck
150       ## Conditional build dependencies
151       ## Always installed, because manual brew installs are hard to get right
152       - asciidoc
153       - xmlto
154       ## Utilities
155       ## preventing or diagnosing hangs
156       - timelimit
158 ## (OSX only) Use a recent macOS image
159 ## See https://docs.travis-ci.com/user/reference/osx#os-x-version
160 ## Default is Xcode 9.4 on macOS 10.13 as of October 2019
161 ## Recent is Xcode 11.2 on macOS 10.14 as of October 2019
162 osx_image: xcode11.2
164 before_install:
165   ## Create empty rust directories for non-Rust builds, so caching succeeds
166   - if [[ "$RUST_OPTIONS" == "" ]]; then mkdir -p $HOME/.cargo $TRAVIS_BUILD_DIR/src/rust/target; fi
168 install:
169   ## If we're on OSX, configure ccache (ccache is automatically installed and configured on Linux)
170   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PATH="/usr/local/opt/ccache/libexec:$PATH"; fi
171   ## If we're on OSX, OpenSSL is keg-only, so tor 0.2.9 and later need to be configured --with-openssl-dir= to build
172   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then OPENSSL_OPTIONS=--with-openssl-dir=`brew --prefix openssl`; fi
173   ## Install conditional features
174   ## Install coveralls
175   - if [[ "$COVERAGE_OPTIONS" != "" ]]; then pip install --user cpp-coveralls; fi
176   ## If we're on OSX, and using asciidoc, configure asciidoc
177   - if [[ "$ASCIIDOC_OPTIONS" == "" ]] && [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export XML_CATALOG_FILES="/usr/local/etc/xml/catalog"; fi
178   ## If we're using Rust, download rustup
179   - if [[ "$RUST_OPTIONS" != "" ]]; then curl -Ssf -o rustup.sh https://sh.rustup.rs; fi
180   ## Install the nightly channels of rustc and cargo and setup our toolchain environment
181   - if [[ "$RUST_OPTIONS" != "" ]]; then sh rustup.sh -y --default-toolchain nightly; fi
182   - if [[ "$RUST_OPTIONS" != "" ]]; then source $HOME/.cargo/env; fi
183   ## If we're testing rust builds in offline-mode, then set up our vendored dependencies
184   - if [[ "$TOR_RUST_DEPENDENCIES" == "true" ]]; then export TOR_RUST_DEPENDENCIES=$PWD/src/ext/rust/crates; fi
185   ## If we're running chutney, install it.
186   - if [[ "$CHUTNEY" != "" ]]; then git clone --depth 1 https://github.com/torproject/chutney.git ; export CHUTNEY_PATH="$(pwd)/chutney"; fi
187   ## If we're running stem, install it.
188   - if [[ "$TEST_STEM" != "" ]]; then git clone --depth 1 https://github.com/torproject/stem.git ; export STEM_SOURCE_DIR=`pwd`/stem; fi
189   ##
190   ## Finally, list installed package versions
191   - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then dpkg-query --show; fi
192   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew list --versions; fi
193   ## Get some info about rustup, rustc and cargo
194   - if [[ "$RUST_OPTIONS" != "" ]]; then which rustup; fi
195   - if [[ "$RUST_OPTIONS" != "" ]]; then which rustc; fi
196   - if [[ "$RUST_OPTIONS" != "" ]]; then which cargo; fi
197   - if [[ "$RUST_OPTIONS" != "" ]]; then rustup --version; fi
198   - if [[ "$RUST_OPTIONS" != "" ]]; then rustc --version; fi
199   - if [[ "$RUST_OPTIONS" != "" ]]; then cargo --version; fi
200   ## Get python version
201   - python --version
202   ## If we're running chutney, show the chutney commit
203   - if [[ "$CHUTNEY" != "" ]]; then pushd "$CHUTNEY_PATH"; git log -1 ; popd ; fi
204   ## If we're running stem, show the stem version and commit
205   - if [[ "$TEST_STEM" != "" ]]; then pushd stem; python -c "from stem import stem; print(stem.__version__);"; git log -1; popd; fi
207 script:
208   # Skip test_rebind on macOS
209   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export TOR_SKIP_TEST_REBIND=true; fi
210   - ./autogen.sh
211   - CONFIGURE_FLAGS="$ASCIIDOC_OPTIONS $COVERAGE_OPTIONS $HARDENING_OPTIONS $MODULES_OPTIONS $NSS_OPTIONS $OPENSSL_OPTIONS $RUST_OPTIONS --enable-fatal-warnings --disable-silent-rules"
212   - echo "Configure flags are $CONFIGURE_FLAGS CC=\"$CC $C_DIALECT_OPTIONS\""
213   - ./configure $CONFIGURE_FLAGS CC="$CC $C_DIALECT_OPTIONS"
214   ## We run `make check` because that's what https://jenkins.torproject.org does.
215   - if [[ "$SKIP_MAKE_CHECK" == "" ]]; then make check; fi
216   - if [[ "$DISTCHECK" != "" ]]; then make distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS"; fi
217   - if [[ "$CHUTNEY" != "" ]]; then make test-network-all; fi
218   ## Diagnostic for bug 29437: kill stem if it hangs for 9.5 minutes
219   ## Travis will kill the job after 10 minutes with no output
220   - if [[ "$TEST_STEM" != "" ]]; then make src/app/tor; timelimit -p -t 540 -s USR1 -T 30 -S ABRT python3 "$STEM_SOURCE_DIR"/run_tests.py --tor src/app/tor --integ --test control.controller --test control.base_controller --test process --log TRACE --log-file stem.log; fi
221   ## If this build was one that produced coverage, upload it.
222   - if [[ "$COVERAGE_OPTIONS" != "" ]]; then coveralls -b . --exclude src/test --exclude src/trunnel --gcov-options '\-p' || echo "Coverage failed"; fi
224 after_failure:
225   ## configure will leave a log file with more details of config failures.
226   ## But the log is too long for travis' rendered view, so tail it.
227   - tail -1000 config.log || echo "tail failed"
228   ## `make check` will leave a log file with more details of test failures.
229   - if [[ "$SKIP_MAKE_CHECK" == "" ]]; then cat test-suite.log || echo "cat failed"; fi
230   ## `make distcheck` puts it somewhere different.
231   - if [[ "$DISTCHECK" != "" ]]; then make show-distdir-testlog || echo "make failed"; fi
232   - if [[ "$DISTCHECK" != "" ]]; then make show-distdir-core || echo "make failed"; fi
233   - if [[ "$CHUTNEY" != "" ]]; then ls test_network_log || echo "ls failed"; cat test_network_log/* || echo "cat failed"; fi
234   - if [[ "$TEST_STEM" != "" ]]; then tail -1000 "$STEM_SOURCE_DIR"/test/data/tor_log || echo "tail failed"; fi
235   - if [[ "$TEST_STEM" != "" ]]; then grep -v "SocketClosed" stem.log | tail -1000 || echo "grep | tail failed"; fi
237 before_cache:
238   ## Delete all gcov files.
239   - if [[ "$COVERAGE_OPTIONS" != "" ]]; then make reset-gcov; fi
240   ## Delete the cargo registry before caching .cargo, because it's cheaper to
241   ## download the registry and throw it away, rather than caching it
242   - rm -rf $HOME/.cargo/registry
244 notifications:
245   irc:
246     channels:
247       - "irc.oftc.net#tor-ci"
248     template:
249       - "%{repository} %{branch} %{commit} - %{author}: %{commit_subject}"
250       - "Build #%{build_number} %{result}. Details: %{build_url}"
251     on_success: change
252     on_failure: change
253   email:
254     on_success: never
255     on_failure: change