.travis.yml 5.3 KB

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