.travis.yml 8.9 KB

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