.travis.yml 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. language: c
  2. cache:
  3. ccache: true
  4. ## cargo: true
  5. directories:
  6. - $HOME/.cargo
  7. ## where we point CARGO_TARGET_DIR in all our cargo invocations
  8. - $TRAVIS_BUILD_DIR/src/rust/target
  9. compiler:
  10. - gcc
  11. - clang
  12. os:
  13. - linux
  14. - osx
  15. ## The build matrix in the following stanza expands into builds for each
  16. ## OS and compiler.
  17. env:
  18. global:
  19. ## The Travis CI environment allows us two cores, so let's use both.
  20. - MAKEFLAGS="-j 2"
  21. ## We turn on hardening by default
  22. ## Also known as --enable-fragile-hardening in 0.3.0.3-alpha and later
  23. - HARDENING_OPTIONS="--enable-expensive-hardening"
  24. ## We turn off asciidoc by default, because it's slow
  25. - ASCIIDOC_OPTIONS="--disable-asciidoc"
  26. matrix:
  27. ## We want to use each build option at least once
  28. ##
  29. ## We don't list default variable values, because we set the defaults
  30. ## in global (or the default is unset)
  31. -
  32. ## TOR_RUST_DEPENDENCIES is spelt RUST_DEPENDENCIES in 0.3.2
  33. - RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
  34. matrix:
  35. ## include creates builds with gcc, linux, sudo: false
  36. include:
  37. ## We include a single coverage build with the best options for coverage
  38. - env: COVERAGE_OPTIONS="--enable-coverage" HARDENING_OPTIONS=""
  39. ## We only want to check these build option combinations once
  40. ## (they shouldn't vary by compiler or OS)
  41. ## We run rust and coverage with hardening off, which seems like enough
  42. # - env: HARDENING_OPTIONS=""
  43. ## We check asciidoc with distcheck, to make sure we remove doc products
  44. - env: DISTCHECK="yes" ASCIIDOC_OPTIONS=""
  45. ## Check rust online with distcheck, to make sure we remove rust products
  46. - env: DISTCHECK="yes" RUST_OPTIONS="--enable-rust --enable-cargo-online-mode"
  47. ## Check disable module dirauth with and without rust
  48. - env: MODULES_OPTIONS="--disable-module-dirauth" RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
  49. - env: MODULES_OPTIONS="--disable-module-dirauth"
  50. ## Uncomment to allow the build to report success (with non-required
  51. ## sub-builds continuing to run) if all required sub-builds have
  52. ## succeeded. This is somewhat buggy currently: it can cause
  53. ## duplicate notifications and prematurely report success if a
  54. ## single sub-build has succeeded. See
  55. ## https://github.com/travis-ci/travis-ci/issues/1696
  56. # fast_finish: true
  57. ## Careful! We use global envs, which makes it hard to exclude or
  58. ## allow failures by env:
  59. ## https://docs.travis-ci.com/user/customizing-the-build#matching-jobs-with-allow_failures
  60. exclude:
  61. ## Clang doesn't work in containerized builds, see below.
  62. - compiler: clang
  63. sudo: false
  64. ## Non-containerized gcc are slow and redundant.
  65. - compiler: gcc
  66. sudo: required
  67. ## gcc on OSX is less useful, because the default compiler is clang.
  68. - compiler: gcc
  69. os: osx
  70. ## gcc on Linux with no env is redundant, because all the custom builds use
  71. ## gcc on Linux
  72. - compiler: gcc
  73. os: linux
  74. env:
  75. ## offline rust builds for gcc on Linux are redundant, because we do an
  76. ## online rust build for gcc on Linux
  77. - compiler: gcc
  78. os: linux
  79. ## TOR_RUST_DEPENDENCIES is spelt RUST_DEPENDENCIES in 0.3.2
  80. env: RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true HARDENING_OPTIONS=""
  81. ## We don't need sudo. (The "apt:" stanza after this allows us to not need
  82. ## sudo; otherwise, we would need it for getting dependencies.)
  83. ##
  84. ## But we use "sudo: required" to force non-containerized builds, working
  85. ## around a Travis CI environment issue: clang LeakAnalyzer fails
  86. ## because it requires ptrace and the containerized environment no
  87. ## longer allows ptrace.
  88. ## https://github.com/travis-ci/travis-ci/issues/9033
  89. ##
  90. ## In the matrix above, we exclude redundant combinations.
  91. sudo:
  92. - false
  93. - required
  94. ## (Linux only) Use the latest Linux image (Ubuntu Trusty)
  95. dist: trusty
  96. ## (Linux only) Download our dependencies
  97. addons:
  98. apt:
  99. packages:
  100. ## Required dependencies
  101. - libevent-dev
  102. - zlib1g-dev
  103. ## Optional dependencies
  104. - libcap-dev
  105. - liblzma-dev
  106. - libscrypt-dev
  107. - libseccomp-dev
  108. ## zstd doesn't exist in Ubuntu Trusty
  109. #- libzstd
  110. ## Conditional dependencies
  111. ## Always installed, so we don't need sudo
  112. - asciidoc
  113. - docbook-xsl
  114. - docbook-xml
  115. - xmlto
  116. ## (OSX only) Use the default OSX image
  117. ## See https://docs.travis-ci.com/user/reference/osx#os-x-version
  118. ## Default is Xcode 9.4 on macOS 10.13 as of August 2018
  119. #osx_image: xcode9.4
  120. before_install:
  121. ## If we're on OSX, homebrew usually needs to be updated first
  122. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
  123. ## We might be upgrading some useless packages, but that's better than missing an upgrade
  124. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew upgrade; fi
  125. ## Create empty rust directories for non-Rust builds, so caching succeeds
  126. - if [[ "$RUST_OPTIONS" == "" ]]; then mkdir -p $HOME/.cargo $TRAVIS_BUILD_DIR/src/rust/target; fi
  127. install:
  128. ## If we're on OSX use brew to install ccache (ccache is automatically installed on Linux)
  129. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache; fi
  130. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PATH="/usr/local/opt/ccache/libexec:$PATH"; fi
  131. ## If we're on OSX use brew to install required dependencies (for Linux, see the "apt:" section above)
  132. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install libevent; fi
  133. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install openssl; fi
  134. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install pkg-config; fi
  135. ## macOS comes with zlib by default, so the homebrew install is keg-only
  136. # - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install zlib; fi
  137. ## If we're on OSX also install the optional dependencies
  138. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install libscrypt; fi
  139. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install xz; fi
  140. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install zstd; fi
  141. ## 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
  142. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then OPENSSL_OPTIONS=--with-openssl-dir=`brew --prefix openssl`; fi
  143. ## Install conditional features
  144. ## Install coveralls
  145. - if [[ "$COVERAGE_OPTIONS" != "" ]]; then pip install --user cpp-coveralls; fi
  146. ## If we're on OSX, and using asciidoc, install asciidoc
  147. - if [[ "$ASCIIDOC_OPTIONS" == "" ]] && [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install asciidoc; fi
  148. - if [[ "$ASCIIDOC_OPTIONS" == "" ]] && [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install xmlto; fi
  149. - if [[ "$ASCIIDOC_OPTIONS" == "" ]] && [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export XML_CATALOG_FILES="/usr/local/etc/xml/catalog"; fi
  150. ## If we're using Rust, download rustup
  151. - if [[ "$RUST_OPTIONS" != "" ]]; then curl -Ssf -o rustup.sh https://sh.rustup.rs; fi
  152. ## Install the nightly channels of rustc and cargo and setup our toolchain environment
  153. - if [[ "$RUST_OPTIONS" != "" ]]; then sh rustup.sh -y --default-toolchain nightly; fi
  154. - if [[ "$RUST_OPTIONS" != "" ]]; then source $HOME/.cargo/env; fi
  155. ## If we're testing rust builds in offline-mode, then set up our vendored dependencies
  156. - if [[ "$TOR_RUST_DEPENDENCIES" == "true" ]]; then export TOR_RUST_DEPENDENCIES=$PWD/src/ext/rust/crates; fi
  157. ##
  158. ## Finally, list installed package versions
  159. - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then dpkg-query --show; fi
  160. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew list --versions; fi
  161. ## Get some info about rustup, rustc and cargo
  162. - if [[ "$RUST_OPTIONS" != "" ]]; then which rustup; fi
  163. - if [[ "$RUST_OPTIONS" != "" ]]; then which rustc; fi
  164. - if [[ "$RUST_OPTIONS" != "" ]]; then which cargo; fi
  165. - if [[ "$RUST_OPTIONS" != "" ]]; then rustup --version; fi
  166. - if [[ "$RUST_OPTIONS" != "" ]]; then rustc --version; fi
  167. - if [[ "$RUST_OPTIONS" != "" ]]; then cargo --version; fi
  168. script:
  169. - ./autogen.sh
  170. - CONFIGURE_FLAGS="$ASCIIDOC_OPTIONS $COVERAGE_OPTIONS $HARDENING_OPTIONS $MODULES_OPTIONS $OPENSSL_OPTIONS $RUST_OPTIONS --enable-fatal-warnings --disable-silent-rules"
  171. - echo "Configure flags are $CONFIGURE_FLAGS"
  172. - ./configure $CONFIGURE_FLAGS
  173. ## We run `make check` because that's what https://jenkins.torproject.org does.
  174. - if [[ "$DISTCHECK" == "" ]]; then make check; fi
  175. - if [[ "$DISTCHECK" != "" ]]; then make distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS"; fi
  176. after_failure:
  177. ## configure will leave a log file with more details of config failures.
  178. ## But the log is too long for travis' rendered view, so tail it.
  179. - tail -1000 config.log || echo "tail failed"
  180. ## `make check` will leave a log file with more details of test failures.
  181. - if [[ "$DISTCHECK" == "" ]]; then cat test-suite.log || echo "cat failed"; fi
  182. ## `make distcheck` puts it somewhere different.
  183. - if [[ "$DISTCHECK" != "" ]]; then make show-distdir-testlog || echo "make failed"; fi
  184. after_success:
  185. ## If this build was one that produced coverage, upload it.
  186. - if [[ "$COVERAGE_OPTIONS" != "" ]]; then coveralls -b . --exclude src/test --exclude src/trunnel --gcov-options '\-p'; fi
  187. notifications:
  188. irc:
  189. channels:
  190. - "irc.oftc.net#tor-ci"
  191. template:
  192. - "%{repository} %{branch} %{commit} - %{author}: %{commit_subject}"
  193. - "Build #%{build_number} %{result}. Details: %{build_url}"
  194. on_success: change
  195. on_failure: change
  196. email:
  197. on_success: never
  198. on_failure: change