.travis.yml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. language: c
  2. ## Comment out the compiler list for now to allow an explicit build
  3. ## matrix.
  4. # compiler:
  5. # - gcc
  6. # - clang
  7. notifications:
  8. irc:
  9. channels:
  10. - "irc.oftc.net#tor-ci"
  11. template:
  12. - "%{repository} %{branch} %{commit} - %{author}: %{commit_subject}"
  13. - "Build #%{build_number} %{result}. Details: %{build_url}"
  14. on_success: change
  15. on_failure: change
  16. email:
  17. on_success: never
  18. on_failure: change
  19. os:
  20. - linux
  21. ## Uncomment the following line to also run the entire build matrix on OSX.
  22. ## This will make your CI builds take roughly ten times longer to finish.
  23. # - osx
  24. ## Use the Ubuntu Trusty images.
  25. dist: trusty
  26. ## We don't need sudo. (The "apt:" stanza after this allows us to not need sudo;
  27. ## otherwise, we would need it for getting dependencies.)
  28. ##
  29. ## We override this in the explicit build matrix to work around a
  30. ## Travis CI environment regression
  31. ## https://github.com/travis-ci/travis-ci/issues/9033
  32. sudo: false
  33. ## (Linux only) Download our dependencies
  34. addons:
  35. apt:
  36. packages:
  37. ## Required dependencies
  38. - libevent-dev
  39. - libseccomp2
  40. - zlib1g-dev
  41. ## Optional dependencies
  42. - liblzma-dev
  43. - libscrypt-dev
  44. ## zstd doesn't exist in Ubuntu Trusty
  45. #- libzstd
  46. ## The build matrix in the following two stanzas expands into four builds (per OS):
  47. ##
  48. ## * with GCC, with Rust
  49. ## * with GCC, without Rust
  50. ## * with Clang, with Rust
  51. ## * with Clang, without Rust
  52. env:
  53. global:
  54. ## The Travis CI environment allows us two cores, so let's use both.
  55. - MAKEFLAGS="-j 2"
  56. matrix:
  57. ## Leave at least one entry here or Travis seems to generate a
  58. ## matrix entry with empty matrix environment variables. Leaving
  59. ## more than one entry causes unwanted matrix entries with
  60. ## unspecified compilers.
  61. - RUST_OPTIONS="--enable-rust --enable-cargo-online-mode"
  62. # - RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
  63. # - RUST_OPTIONS=""
  64. matrix:
  65. ## Uncomment to allow the build to report success (with non-required
  66. ## sub-builds continuing to run) if all required sub-builds have
  67. ## succeeded. This is somewhat buggy currently: it can cause
  68. ## duplicate notifications and prematurely report success if a
  69. ## single sub-build has succeeded. See
  70. ## https://github.com/travis-ci/travis-ci/issues/1696
  71. # fast_finish: true
  72. ## Uncomment the appropriate lines below to allow the build to
  73. ## report success even if some less-critical sub-builds fail and it
  74. ## seems likely to take a while for someone to fix it. Currently
  75. ## Travis CI doesn't distinguish "all builds succeeded" from "some
  76. ## non-required sub-builds failed" except on the individual build's
  77. ## page, which makes it somewhat annoying to detect from the
  78. ## branches and build history pages. See
  79. ## https://github.com/travis-ci/travis-ci/issues/8716
  80. allow_failures:
  81. # - env: RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
  82. # - env: RUST_OPTIONS="--enable-rust --enable-cargo-online-mode
  83. # - compiler: clang
  84. ## Create explicit matrix entries to work around a Travis CI
  85. ## environment issue. Missing keys inherit from the first list
  86. ## entry under that key outside the "include" clause.
  87. include:
  88. - compiler: gcc
  89. - compiler: gcc
  90. env: RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
  91. - compiler: gcc
  92. env: RUST_OPTIONS=""
  93. - compiler: gcc
  94. env: COVERAGE_OPTIONS="--enable-coverage"
  95. - compiler: gcc
  96. env: DISTCHECK="yes" RUST_OPTIONS=""
  97. - compiler: gcc
  98. env: DISTCHECK="yes" RUST_OPTIONS="--enable-rust --enable-cargo-online-mode"
  99. ## The "sudo: required" forces non-containerized builds, working
  100. ## around a Travis CI environment issue: clang LeakAnalyzer fails
  101. ## because it requires ptrace and the containerized environment no
  102. ## longer allows ptrace.
  103. - compiler: clang
  104. sudo: required
  105. - compiler: clang
  106. sudo: required
  107. env: RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
  108. - compiler: clang
  109. sudo: required
  110. env: RUST_OPTIONS=""
  111. before_install:
  112. ## If we're on OSX, homebrew usually needs to updated first
  113. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
  114. ## Download rustup
  115. - if [[ "$RUST_OPTIONS" != "" ]]; then curl -Ssf -o rustup.sh https://sh.rustup.rs; fi
  116. - if [[ "$COVERAGE_OPTIONS" != "" ]]; then pip install --user cpp-coveralls; fi
  117. install:
  118. ## If we're on OSX use brew to install required dependencies (for Linux, see the "apt:" section above)
  119. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated openssl || brew upgrade openssl; }; fi
  120. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated libevent || brew upgrade libevent; }; fi
  121. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated pkg-config || brew upgrade pkg-config; }; fi
  122. ## If we're on OSX also install the optional dependencies
  123. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated xz || brew upgrade xz; }; fi
  124. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated libscrypt || brew upgrade libscrypt; }; fi
  125. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated zstd || brew upgrade zstd; }; fi
  126. ## Install the stable channels of rustc and cargo and setup our toolchain environment
  127. - if [[ "$RUST_OPTIONS" != "" ]]; then sh rustup.sh -y --default-toolchain stable; fi
  128. - if [[ "$RUST_OPTIONS" != "" ]]; then source $HOME/.cargo/env; fi
  129. ## Get some info about rustc and cargo
  130. - if [[ "$RUST_OPTIONS" != "" ]]; then which rustc; fi
  131. - if [[ "$RUST_OPTIONS" != "" ]]; then which cargo; fi
  132. - if [[ "$RUST_OPTIONS" != "" ]]; then rustc --version; fi
  133. - if [[ "$RUST_OPTIONS" != "" ]]; then cargo --version; fi
  134. ## If we're testing rust builds in offline-mode, then set up our vendored dependencies
  135. - if [[ "$RUST_OPTIONS" == "--enable-rust" ]]; then git submodule init ; fi
  136. - if [[ "$RUST_OPTIONS" == "--enable-rust" ]]; then git submodule update; fi
  137. - if [[ "$TOR_RUST_DEPENDENCIES" == "true" ]]; then export TOR_RUST_DEPENDENCIES=$PWD/src/ext/rust/crates; fi
  138. script:
  139. - ./autogen.sh
  140. - ./configure $RUST_OPTIONS $COVERAGE_OPTIONS --disable-asciidoc --enable-fatal-warnings --disable-silent-rules --enable-fragile-hardening
  141. ## We run `make check` because that's what https://jenkins.torproject.org does.
  142. - if [[ "$DISTCHECK" == "" ]]; then make check; fi
  143. - if [[ "$DISTCHECK" != "" ]]; then make distcheck DISTCHECK_CONFIGURE_FLAGS="$RUST_OPTIONS $COVERAGE_OPTIONS --disable-asciidoc --enable-fatal-warnings --disable-silent-rules --enable-fragile-hardening"; fi
  144. after_failure:
  145. ## `make check` will leave a log file with more details of test failures.
  146. - if [[ "$DISTCHECK" == "" ]]; then cat test-suite.log; fi
  147. ## `make distcheck` puts it somewhere different.
  148. - if [[ "$DISTCHECK" != "" ]]; then make show-distdir-testlog; fi
  149. after_success:
  150. ## If this build was one that produced coverage, upload it.
  151. - if [[ "$COVERAGE_OPTIONS" != "" ]]; then coveralls -b . --exclude src/test --exclude src/trunnel --gcov-options '\-p'; fi