.travis.yml 9.1 KB

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