.travis.yml 9.8 KB

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