.travis.yml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. ## Uncomment to allow the build to report success (with non-required
  58. ## sub-builds continuing to run) if all required sub-builds have
  59. ## succeeded. This is somewhat buggy currently: it can cause
  60. ## duplicate notifications and prematurely report success if a
  61. ## single sub-build has succeeded. See
  62. ## https://github.com/travis-ci/travis-ci/issues/1696
  63. # fast_finish: true
  64. ## Uncomment the appropriate lines below to allow the build to
  65. ## report success even if some less-critical sub-builds fail and it
  66. ## seems likely to take a while for someone to fix it. Currently
  67. ## Travis CI doesn't distinguish "all builds succeeded" from "some
  68. ## non-required sub-builds failed" except on the individual build's
  69. ## page, which makes it somewhat annoying to detect from the
  70. ## branches and build history pages. See
  71. ## https://github.com/travis-ci/travis-ci/issues/8716
  72. allow_failures:
  73. # - env: RUST_OPTIONS="--enable-rust" TOR_RUST_DEPENDENCIES=true
  74. # - env: RUST_OPTIONS="--enable-rust --enable-cargo-online-mode
  75. # - compiler: clang
  76. ## Create explicit matrix entries to work around a Travis CI
  77. ## environment issue. Missing keys inherit from the first list
  78. ## entry under that key outside the "include" clause.
  79. include:
  80. - compiler: gcc
  81. - compiler: gcc
  82. env: COVERAGE_OPTIONS="--enable-coverage"
  83. - compiler: gcc
  84. env: DISTCHECK="yes"
  85. ## The "sudo: required" forces non-containerized builds, working
  86. ## around a Travis CI environment issue: clang LeakAnalyzer fails
  87. ## because it requires ptrace and the containerized environment no
  88. ## longer allows ptrace.
  89. - compiler: clang
  90. sudo: required
  91. before_install:
  92. ## If we're on OSX, homebrew usually needs to updated first
  93. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
  94. ## Download rustup
  95. - curl -Ssf -o rustup.sh https://sh.rustup.rs
  96. - if [[ "$COVERAGE_OPTIONS" != "" ]]; then pip install --user cpp-coveralls; fi
  97. install:
  98. ## If we're on OSX use brew to install required dependencies (for Linux, see the "apt:" section above)
  99. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated openssl || brew upgrade openssl; }; fi
  100. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated libevent || brew upgrade libevent; }; fi
  101. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated pkg-config || brew upgrade pkg-config; }; fi
  102. ## If we're on OSX also install the optional dependencies
  103. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated xz || brew upgrade xz; }; fi
  104. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated libscrypt || brew upgrade libscrypt; }; fi
  105. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then { brew outdated zstd || brew upgrade zstd; }; fi
  106. script:
  107. - ./autogen.sh
  108. - ./configure $RUST_OPTIONS $COVERAGE_OPTIONS --disable-asciidoc --enable-fatal-warnings --disable-silent-rules --enable-fragile-hardening
  109. ## We run `make check` because that's what https://jenkins.torproject.org does.
  110. - if [[ "$DISTCHECK" == "" ]]; then make check; fi
  111. - if [[ "$DISTCHECK" != "" ]]; then make distcheck DISTCHECK_CONFIGURE_FLAGS="$RUST_OPTIONS $COVERAGE_OPTIONS --disable-asciidoc --enable-fatal-warnings --disable-silent-rules --enable-fragile-hardening"; fi
  112. after_failure:
  113. ## `make check` will leave a log file with more details of test failures.
  114. - if [[ "$DISTCHECK" == "" ]]; then cat test-suite.log; fi
  115. ## `make distcheck` puts it somewhere different.
  116. - if [[ "$DISTCHECK" != "" ]]; then make show-distdir-testlog; fi
  117. after_success:
  118. ## If this build was one that produced coverage, upload it.
  119. - if [[ "$COVERAGE_OPTIONS" != "" ]]; then coveralls -b . --exclude src/test --exclude src/trunnel --gcov-options '\-p'; fi