1language: c 2dist: bionic 3 4# To cache doc-building dependencies and C compiler output. 5cache: 6 - pip 7 - ccache 8 - directories: 9 - $HOME/multissl 10 11env: 12 global: 13 - OPENSSL=1.1.1f 14 - OPENSSL_DIR="$HOME/multissl/openssl/${OPENSSL}" 15 - PATH="${OPENSSL_DIR}/bin:$PATH" 16 - CFLAGS="-I${OPENSSL_DIR}/include" 17 - LDFLAGS="-L${OPENSSL_DIR}/lib" 18 # Set rpath with env var instead of -Wl,-rpath linker flag 19 # OpenSSL ignores LDFLAGS when linking bin/openssl 20 - LD_RUN_PATH="${OPENSSL_DIR}/lib" 21 22branches: 23 only: 24 - master 25 - /^\d\.\d+$/ 26 - buildbot-custom 27 28matrix: 29 fast_finish: true 30 allow_failures: 31 - env: OPTIONAL=true 32 include: 33 - name: "CPython tests" 34 os: linux 35 language: c 36 compiler: clang 37 # gcc also works, but to keep the # of concurrent builds down, we use one C 38 # compiler here and the other to run the coverage build. Clang is preferred 39 # in this instance for its better error messages. 40 env: TESTING=cpython 41 addons: 42 apt: 43 packages: 44 - gdb 45 - xvfb 46 - name: "Documentation build" 47 os: linux 48 language: python 49 # Build the docs against a stable version of Python so code bugs don't hold up doc-related PRs. 50 python: 3.6 51 env: TESTING=docs 52 before_script: 53 - cd Doc 54 - make venv PYTHON=python 55 script: 56 - make check suspicious html SPHINXOPTS="-q -W -j4" 57 - name: "Documentation tests" 58 os: linux 59 language: c 60 compiler: clang 61 env: TESTING=doctest 62 addons: 63 apt: 64 packages: 65 - xvfb 66 before_script: 67 - ./configure 68 - make -j4 69 - make -C Doc/ PYTHON=../python venv 70 script: 71 xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W -j4" doctest 72 - name: "Test code coverage (Python)" 73 os: linux 74 language: c 75 compiler: gcc 76 env: OPTIONAL=true 77 addons: 78 apt: 79 packages: 80 - xvfb 81 before_script: 82 - | 83 if [[ "$TRAVIS_PULL_REQUEST" != "false" ]] 84 then 85 echo "Don't run Python coverage on pull requests." 86 exit 87 fi 88 - ./configure 89 - make -j4 90 # Need a venv that can parse covered code. 91 - ./python -m venv venv 92 - ./venv/bin/python -m pip install -U coverage 93 - ./venv/bin/python -m pip install -r Misc/requirements-test.txt 94 - ./venv/bin/python -m test.pythoninfo 95 script: 96 # Skip tests that re-run the entire test suite. 97 - xvfb-run ./venv/bin/python -m coverage run --branch --pylib -m test --fail-env-changed -uall,-cpu -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_multiprocessing_spawn -x test_concurrent_futures || true 98 after_script: # Probably should be after_success once test suite updated to run under coverage.py. 99 # Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files. 100 - source ./venv/bin/activate 101 - bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml 102 - name: "Test code coverage (C)" 103 os: linux 104 language: c 105 compiler: gcc 106 env: OPTIONAL=true 107 addons: 108 apt: 109 packages: 110 - lcov 111 - xvfb 112 before_script: 113 - | 114 if [[ "$TRAVIS_PULL_REQUEST" != "false" ]] 115 then 116 echo "Don't run C coverage on pull requests." 117 exit 118 fi 119 - ./configure 120 script: 121 - xvfb-run make -j4 coverage-report 122 after_script: # Probably should be after_success once test suite updated to run under coverage.py. 123 - make pythoninfo 124 - bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml 125 126 127before_install: 128 - set -e 129 - | 130 # Check short-circuit conditions 131 if [[ "${TESTING}" != "docs" && "${TESTING}" != "doctest" ]] 132 then 133 if [[ "$TRAVIS_PULL_REQUEST" == "false" ]] 134 then 135 echo "Not a PR, doing full build." 136 else 137 # Pull requests are slightly complicated because $TRAVIS_COMMIT_RANGE 138 # may include more changes than desired if the history is convoluted. 139 # Instead, explicitly fetch the base branch and compare against the 140 # merge-base commit. 141 git fetch -q origin +refs/heads/$TRAVIS_BRANCH 142 changes=$(git diff --name-only HEAD $(git merge-base HEAD FETCH_HEAD)) 143 echo "Files changed:" 144 echo "$changes" 145 if ! echo "$changes" | grep -qvE '(\.rst$)|(^Doc)|(^Misc)' 146 then 147 echo "Only docs were updated, stopping build process." 148 exit 149 fi 150 fi 151 fi 152 153install: 154 - | 155 # Install OpenSSL as necessary 156 # Note: doctest needs OpenSSL 157 if [[ "${TESTING}" != "docs" ]] 158 then 159 # clang complains about unused-parameter a lot, redirect stderr 160 python3 Tools/ssl/multissltests.py --steps=library \ 161 --base-directory ${HOME}/multissl \ 162 --openssl ${OPENSSL} >/dev/null 2>&1 163 fi 164 - openssl version 165 166# Travis provides only 2 cores, so don't overdo the parallelism and waste memory. 167before_script: 168 # -Og is much faster than -O0 169 - CFLAGS="${CFLAGS} -Og" ./configure --with-pydebug 170 - eval "$(pyenv init -)" 171 - pyenv global 3.8 172 - PYTHON_FOR_REGEN=python3.8 make -j4 regen-all 173 - changes=`git status --porcelain` 174 - | 175 # Check for changes in regenerated files 176 if ! test -z "$changes" 177 then 178 echo "Generated files not up to date" 179 echo "$changes" 180 exit 1 181 fi 182 - make -j4 183 - make pythoninfo 184 185script: 186 # Using the built Python as patchcheck.py is built around the idea of using 187 # a checkout-build of CPython to know things like what base branch the changes 188 # should be compared against. 189 # Only run on Linux as the check only needs to be run once. 190 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./python Tools/scripts/patchcheck.py --travis $TRAVIS_PULL_REQUEST; fi 191 # Check that all symbols exported by libpython start with "Py" or "_Py" 192 - make smelly 193 # `-r -w` implicitly provided through `make buildbottest`. 194 - | 195 if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then 196 XVFB_RUN=xvfb-run; 197 fi 198 $XVFB_RUN make buildbottest TESTOPTS="-j4 -uall,-cpu" 199notifications: 200 email: false 201 irc: 202 channels: 203 # This is set to a secure variable to prevent forks from notifying the 204 # IRC channel whenever they fail a build. This can be removed when travis 205 # implements https://github.com/travis-ci/travis-ci/issues/1094. 206 # The actual value here is: irc.freenode.net#python-dev 207 - secure: "s7kAkpcom2yUJ8XqyjFI0obJmhAGrn1xmoivdaPdgBIA++X47TBp1x4pgDsbEsoalef7bEwa4l07KdT4qa+DOd/c4QxaWom7fbN3BuLVsZuVfODnl79+gYq/TAbGfyH+yDs18DXrUfPgwD7C5aW32ugsqAOd4iWzfGJQ5OrOZzqzGjYdYQUEkJFXgxDEIb4aHvxNDWGO3Po9uKISrhb5saQ0l776yLo1Ur7M4oxl8RTbCdgX0vf5TzPg52BgvZpOgt3DHOUYPeiJLKNjAE6ibg0U95sEvMfHX77nz4aFY4/3UI6FFaRla34rZ+mYKrn0TdxOhera1QOgPmM6HzdO4K44FpfK1DS0Xxk9U9/uApq+cG0bU3W+cVUHDBe5+90lpRBAXHeHCgT7TI8gec614aiT8lEr3+yH8OBRYGzkjNK8E2LJZ/SxnVxDe7aLF6AWcoWLfS6/ziAIBFQ5Nc4U72CT8fGVSkl8ywPiRlvixKdvTODMSZo0jMqlfZSNaAPTsNRx4wu5Uis4qekwe32Fz4aB6KGpsuuVjBi+H6v0RKxNJNGY3JKDiEH2TK0UE2auJ5GvLW48aUVFcQMB7euCWYXlSWVRHh3WLU8QXF29Dw4JduRZqUpOdRgMHU79UHRq+mkE0jAS/nBcS6CvsmxCpTSrfVYuMOu32yt18QQoTyU=" 208 on_success: change 209 on_failure: always 210 skip_join: true 211 webhooks: 212 urls: 213 # For the same reasons as above for IRC, we encrypt the webhook address 214 # for Zulip. The actual value is: 215 # https://python.zulipchat.com/api/v1/external/travis?api_key=<api-key-redacted>&stream=core%2Ftest+runs 216 - secure: "vLz2TodSL7wQ8DsIu86koRS9i4dsK40PH8+wzY93PBCCAzJAz113LTxK3/9PamMv+ObDRUSe5OpXcquE3d5Gwpu8IymF113qK0I3uNr+O3FtmKlj/Kd1P/V+z4pTpS3zh3lW9gyKV9EMWXIWS0IYKKZQU144XqUlIiucWK2jHJF/cSz2cRAx/6Kx68X4mZwEC7hiMOF4ZsWUMbCglM89ybeS0pr0kK9mmh88qsPyRQov3mRKswmVPlePk7clVLNAL43qSe3SzmrmACZfQ9KJYmpYnr/cjo2b6svYHcQBAwAUarZZ9KBMXeV7HwGWsSXAvHH2ynR0P++braBHGEMTGMSitdVWzFTmeiHnrkp08WAB+uFs54iEx3VklTk9bCzozTm2S94TRxbrsG9SypMvQxG570JV6P2XYuR+taCb/GMtMqrtGQm2e1Ht+nDLtiUb+/+rwEbicJJ13knptOQZI4tPOZESI/kXkORkSNwFfLSNLSl9jTlMmO7KjAAPApURHEdx26RbItAn8mIX2NcHTRjKn2qV4h3C54nmHmKWn/ZudHHJc6ieZSEUBoaLGAYmcWJRqrM6jiy2h9I9TRrCKAiGh5jT47FYKLwosTtV245l/ZhDb6eTVfEFT6TSLEoyfx9cCtTUvfMtXYl8eN9wlFYYpH8MSWbMD14eEkKBTWg=" 217 on_success: change 218 on_failure: always 219