.travis.yml 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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. # We clone our stem repo and run `make test-stem`
  46. - env: TEST_STEM="yes"
  47. ## Check rust online with distcheck, to make sure we remove rust products
  48. - env: DISTCHECK="yes" RUST_OPTIONS="--enable-rust --enable-cargo-online-mode"
  49. ## Check disable module dirauth with and without rust
  50. - env: MODULES_OPTIONS="--disable-module-dirauth" RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
  51. - env: MODULES_OPTIONS="--disable-module-dirauth"
  52. ## Check NSS
  53. - env: NSS_OPTIONS="--enable-nss"
  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. ## Non-containerized gcc are slow and redundant.
  69. - compiler: gcc
  70. sudo: required
  71. ## gcc on OSX is less useful, because the default compiler is clang.
  72. - compiler: gcc
  73. os: osx
  74. ## gcc on Linux with no env is redundant, because all the custom builds use
  75. ## gcc on Linux
  76. - compiler: gcc
  77. os: linux
  78. env:
  79. ## offline rust builds for gcc on Linux are redundant, because we do an
  80. ## online rust build for gcc on Linux
  81. - compiler: gcc
  82. os: linux
  83. ## TOR_RUST_DEPENDENCIES is spelt RUST_DEPENDENCIES in 0.3.2
  84. env: RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true HARDENING_OPTIONS=""
  85. ## We don't need sudo. (The "apt:" stanza after this allows us to not need
  86. ## sudo; otherwise, we would need it for getting dependencies.)
  87. ##
  88. ## But we use "sudo: required" to force non-containerized builds, working
  89. ## around a Travis CI environment issue: clang LeakAnalyzer fails
  90. ## because it requires ptrace and the containerized environment no
  91. ## longer allows ptrace.
  92. ## https://github.com/travis-ci/travis-ci/issues/9033
  93. ##
  94. ## In the matrix above, we exclude redundant combinations.
  95. sudo:
  96. - false
  97. - required
  98. ## (Linux only) Use the latest Linux image (Ubuntu Trusty)
  99. dist: trusty
  100. ## Download our dependencies
  101. addons:
  102. ## (Linux only)
  103. apt:
  104. packages:
  105. ## Required dependencies
  106. - libevent-dev
  107. ## Ubuntu comes with OpenSSL by default
  108. #- libssl-dev
  109. - zlib1g-dev
  110. ## Optional dependencies
  111. - libcap-dev
  112. - liblzma-dev
  113. - libnss3-dev
  114. - libscrypt-dev
  115. - libseccomp-dev
  116. ## zstd doesn't exist in Ubuntu Trusty
  117. #- libzstd
  118. ## Conditional build dependencies
  119. ## Always installed, so we don't need sudo
  120. - asciidoc
  121. - docbook-xsl
  122. - docbook-xml
  123. - xmlto
  124. ## (OSX only)
  125. homebrew:
  126. packages:
  127. ## Required dependencies
  128. - libevent
  129. ## The OSX version of OpenSSL is way too old
  130. - openssl
  131. ## OSX comes with zlib by default
  132. ## to use a newer zlib, pass the keg path to configure (like OpenSSL)
  133. #- zlib
  134. ## Optional dependencies
  135. - libscrypt
  136. - xz
  137. - zstd
  138. ## Required build dependencies
  139. ## Tor needs pkg-config to find some dependencies at build time
  140. - pkg-config
  141. ## Optional build dependencies
  142. - ccache
  143. ## Conditional build dependencies
  144. ## Always installed, because manual brew installs are hard to get right
  145. - asciidoc
  146. - xmlto
  147. ## (OSX only) Use the default OSX image
  148. ## See https://docs.travis-ci.com/user/reference/osx#os-x-version
  149. ## Default is Xcode 9.4 on macOS 10.13 as of August 2018
  150. #osx_image: xcode9.4
  151. before_install:
  152. ## Create empty rust directories for non-Rust builds, so caching succeeds
  153. - if [[ "$RUST_OPTIONS" == "" ]]; then mkdir -p $HOME/.cargo $TRAVIS_BUILD_DIR/src/rust/target; fi
  154. install:
  155. ## If we're on OSX, configure ccache (ccache is automatically installed and configured on Linux)
  156. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PATH="/usr/local/opt/ccache/libexec:$PATH"; fi
  157. ## 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
  158. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then OPENSSL_OPTIONS=--with-openssl-dir=`brew --prefix openssl`; fi
  159. ## Install conditional features
  160. ## Install coveralls
  161. - if [[ "$COVERAGE_OPTIONS" != "" ]]; then pip install --user cpp-coveralls; fi
  162. ## If we're on OSX, and using asciidoc, configure asciidoc
  163. - if [[ "$ASCIIDOC_OPTIONS" == "" ]] && [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export XML_CATALOG_FILES="/usr/local/etc/xml/catalog"; fi
  164. ## If we're using Rust, download rustup
  165. - if [[ "$RUST_OPTIONS" != "" ]]; then curl -Ssf -o rustup.sh https://sh.rustup.rs; fi
  166. ## Install the nightly channels of rustc and cargo and setup our toolchain environment
  167. - if [[ "$RUST_OPTIONS" != "" ]]; then sh rustup.sh -y --default-toolchain nightly; fi
  168. - if [[ "$RUST_OPTIONS" != "" ]]; then source $HOME/.cargo/env; fi
  169. ## If we're testing rust builds in offline-mode, then set up our vendored dependencies
  170. - if [[ "$TOR_RUST_DEPENDENCIES" == "true" ]]; then export TOR_RUST_DEPENDENCIES=$PWD/src/ext/rust/crates; fi
  171. - if [[ "$TEST_STEM" != "" ]]; then git clone --depth 1 https://github.com/torproject/stem.git ; export STEM_SOURCE_DIR=`pwd`/stem; fi
  172. ##
  173. ## Finally, list installed package versions
  174. - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then dpkg-query --show; fi
  175. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew list --versions; fi
  176. ## Get some info about rustup, rustc and cargo
  177. - if [[ "$RUST_OPTIONS" != "" ]]; then which rustup; fi
  178. - if [[ "$RUST_OPTIONS" != "" ]]; then which rustc; fi
  179. - if [[ "$RUST_OPTIONS" != "" ]]; then which cargo; fi
  180. - if [[ "$RUST_OPTIONS" != "" ]]; then rustup --version; fi
  181. - if [[ "$RUST_OPTIONS" != "" ]]; then rustc --version; fi
  182. - if [[ "$RUST_OPTIONS" != "" ]]; then cargo --version; fi
  183. - if [[ "$TEST_STEM" != "" ]]; then pushd stem; python -c "from stem import stem; print(stem.__version__);"; git log -1; popd; fi
  184. script:
  185. - ./autogen.sh
  186. - CONFIGURE_FLAGS="$ASCIIDOC_OPTIONS $COVERAGE_OPTIONS $HARDENING_OPTIONS $MODULES_OPTIONS $NSS_OPTIONS $OPENSSL_OPTIONS $RUST_OPTIONS --enable-fatal-warnings --disable-silent-rules"
  187. - echo "Configure flags are $CONFIGURE_FLAGS"
  188. - ./configure $CONFIGURE_FLAGS
  189. ## We run `make check` because that's what https://jenkins.torproject.org does.
  190. - if [[ "$DISTCHECK" == "" && "$TEST_STEM" == "" ]]; then make check; fi
  191. - if [[ "$TEST_STEM" != "" ]]; then make src/app/tor test-stem; fi
  192. - if [[ "$DISTCHECK" != "" && "$TEST_STEM" == "" ]]; then make distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS"; fi
  193. after_failure:
  194. ## configure will leave a log file with more details of config failures.
  195. ## But the log is too long for travis' rendered view, so tail it.
  196. - tail -1000 config.log || echo "tail failed"
  197. ## `make check` will leave a log file with more details of test failures.
  198. - if [[ "$DISTCHECK" == "" ]]; then cat test-suite.log || echo "cat failed"; fi
  199. ## `make distcheck` puts it somewhere different.
  200. - if [[ "$DISTCHECK" != "" ]]; then make show-distdir-testlog || echo "make failed"; fi
  201. - if [[ "$DISTCHECK" != "" ]]; then make show-distdir-core || echo "make failed"; fi
  202. after_success:
  203. ## If this build was one that produced coverage, upload it.
  204. - if [[ "$COVERAGE_OPTIONS" != "" ]]; then coveralls -b . --exclude src/test --exclude src/trunnel --gcov-options '\-p'; fi
  205. notifications:
  206. irc:
  207. channels:
  208. - "irc.oftc.net#tor-ci"
  209. template:
  210. - "%{repository} %{branch} %{commit} - %{author}: %{commit_subject}"
  211. - "Build #%{build_number} %{result}. Details: %{build_url}"
  212. on_success: change
  213. on_failure: change
  214. email:
  215. on_success: never
  216. on_failure: change