.travis.yml 6.85 KB
Newer Older
1 2 3 4 5
language: c
dist: trusty
sudo: false
group: beta

6 7
# To cache doc-building dependencies and C compiler output.
cache:
8 9 10 11
  - pip
  - ccache
  - directories:
    - $HOME/multissl
12 13 14

env:
  global:
15
    - OPENSSL=1.1.0i
16 17
    - OPENSSL_DIR="$HOME/multissl/openssl/${OPENSSL}"
    - PATH="${OPENSSL_DIR}/bin:$PATH"
18 19
    # Use -O3 because we don't use debugger on Travis-CI
    - CFLAGS="-I${OPENSSL_DIR}/include -O3"
20 21 22 23
    - LDFLAGS="-L${OPENSSL_DIR}/lib"
    # Set rpath with env var instead of -Wl,-rpath linker flag
    # OpenSSL ignores LDFLAGS when linking bin/openssl
    - LD_RUN_PATH="${OPENSSL_DIR}/lib"
24

25 26 27 28
branches:
  only:
    - master
    - /^\d\.\d$/
29
    - buildbot-custom
30

31
matrix:
32
  fast_finish: true
33
  allow_failures:
34
    - env: OPTIONAL=true
35
  include:
36 37 38 39
    - os: linux
      language: c
      compiler: clang
      # gcc also works, but to keep the # of concurrent builds down, we use one C
40 41 42
      # compiler here and the other to run the coverage build. Clang is preferred
      # in this instance for its better error messages.
      env: TESTING=cpython
43 44 45 46
      addons:
        apt:
          packages:
            - xvfb
47 48
    - os: linux
      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 55
        # Sphinx is pinned so that new versions that introduce new warnings won't suddenly cause build failures.
        # (Updating the version is fine as long as no warnings are raised by doing so.)
56
        # The theme used by the docs is stored separately, so we need to install that as well.
57
        - python -m pip install sphinx==1.8.1 blurb python-docs-theme
58
      script:
59
        - make check suspicious html SPHINXOPTS="-q -W -j4"
60 61 62 63 64 65 66
    - os: osx
      language: c
      compiler: clang
      # Testing under macOS is optional until testing stability has been demonstrated.
      env: OPTIONAL=true
      before_install:
        # Python 3 is needed for Argument Clinic and multissl
67
        - HOMEBREW_NO_AUTO_UPDATE=1 brew install xz python3
68
        - export PATH=$(brew --prefix)/bin:$(brew --prefix)/sbin:$PATH
69 70
    - os: linux
      language: c
71
      compiler: gcc
72
      env: OPTIONAL=true
73 74 75 76
      addons:
        apt:
          packages:
            - lcov
77
            - xvfb
78
      before_script:
79
        - ./configure
80
        - make coverage -s -j4
81 82 83 84
        # Need a venv that can parse covered code.
        - ./python -m venv venv
        - ./venv/bin/python -m pip install -U coverage
        - ./venv/bin/python -m test.pythoninfo
85 86
      script:
        # Skip tests that re-run the entire test suite.
87
        - xvfb-run ./venv/bin/python -m coverage run --pylib -m test --fail-env-changed -uall,-cpu -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_multiprocessing_spawn -x test_concurrent_futures
88 89 90
      after_script:  # Probably should be after_success once test suite updated to run under coverage.py.
        # Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files.
        - source ./venv/bin/activate
91
        - make coverage-lcov
92 93
        - bash <(curl -s https://codecov.io/bash)

94 95 96

before_install:
  - set -e
97
  - |
98
      # Check short-circuit conditions
99
      if [[ "${TESTING}" != "docs" ]]
100
      then
101
        if [[ "$TRAVIS_PULL_REQUEST" == "false" ]]
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
        then
          echo "Not a PR, doing full build."
        else
          # Pull requests are slightly complicated because $TRAVIS_COMMIT_RANGE
          # may include more changes than desired if the history is convoluted.
          # Instead, explicitly fetch the base branch and compare against the
          # merge-base commit.
          git fetch -q origin +refs/heads/$TRAVIS_BRANCH
          changes=$(git diff --name-only HEAD $(git merge-base HEAD FETCH_HEAD))
          echo "Files changed:"
          echo "$changes"
          if ! echo "$changes" | grep -qvE '(\.rst$)|(^Doc)|(^Misc)'
          then
            echo "Only docs were updated, stopping build process."
            exit
          fi
        fi
119 120
      fi

121 122 123
install:
  - |
      # Install OpenSSL as necessary
124
      if [[ "${TESTING}" != "docs" ]]
125
      then
126 127 128 129 130
        # clang complains about unused-parameter a lot, redirect stderr
        python3 Tools/ssl/multissltests.py --steps=library \
            --base-directory ${HOME}/multissl \
            --openssl ${OPENSSL} >/dev/null 2>&1
      fi
131 132 133 134 135 136 137 138 139
  - openssl version

# Travis provides only 2 cores, so don't overdo the parallelism and waste memory.
before_script:
  - ./configure --with-pydebug
  - make -j4 regen-all
  - changes=`git status --porcelain`
  - |
      # Check for changes in regenerated files
140
      if ! test -z "$changes"
141 142
      then
        echo "Generated files not up to date"
143
        echo "$changes"
144 145
        exit 1
      fi
146 147
  - make -j4
  - make pythoninfo
148 149

script:
150 151 152 153 154
  # Using the built Python as patchcheck.py is built around the idea of using
  # a checkout-build of CPython to know things like what base branch the changes
  # should be compared against.
  # Only run on Linux as the check only needs to be run once.
  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./python Tools/scripts/patchcheck.py --travis $TRAVIS_PULL_REQUEST; fi
155 156
  # Check that all symbols exported by libpython start with "Py" or "_Py"
  - make smelly
157
  # `-r -w` implicitly provided through `make buildbottest`.
158 159 160 161 162 163 164 165
  - |
    if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
      XVFB_RUN=xvfb-run;
    fi
    $XVFB_RUN make buildbottest TESTOPTS="-j4 -uall,-cpu"
    if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
      $XVFB_RUN make PYTHON=../python SPHINXOPTS="-q -W -j4" -C Doc/ venv doctest
    fi
166 167
notifications:
  email: false
168 169 170 171 172
  webhooks:
    urls:
      - https://python.zulipchat.com/api/v1/external/travis?api_key=QTP4LAknlFml0NuPQmAetvH4KQaokiQE&stream=core%2Ftest+runs
    on_success: change
    on_failure: always
173 174
  irc:
    channels:
175 176 177 178 179
      # This is set to a secure variable to prevent forks from notifying the
      # IRC channel whenever they fail a build. This can be removed when travis
      # implements https://github.com/travis-ci/travis-ci/issues/1094.
      # The actual value here is: irc.freenode.net#python-dev
      - secure: "s7kAkpcom2yUJ8XqyjFI0obJmhAGrn1xmoivdaPdgBIA++X47TBp1x4pgDsbEsoalef7bEwa4l07KdT4qa+DOd/c4QxaWom7fbN3BuLVsZuVfODnl79+gYq/TAbGfyH+yDs18DXrUfPgwD7C5aW32ugsqAOd4iWzfGJQ5OrOZzqzGjYdYQUEkJFXgxDEIb4aHvxNDWGO3Po9uKISrhb5saQ0l776yLo1Ur7M4oxl8RTbCdgX0vf5TzPg52BgvZpOgt3DHOUYPeiJLKNjAE6ibg0U95sEvMfHX77nz4aFY4/3UI6FFaRla34rZ+mYKrn0TdxOhera1QOgPmM6HzdO4K44FpfK1DS0Xxk9U9/uApq+cG0bU3W+cVUHDBe5+90lpRBAXHeHCgT7TI8gec614aiT8lEr3+yH8OBRYGzkjNK8E2LJZ/SxnVxDe7aLF6AWcoWLfS6/ziAIBFQ5Nc4U72CT8fGVSkl8ywPiRlvixKdvTODMSZo0jMqlfZSNaAPTsNRx4wu5Uis4qekwe32Fz4aB6KGpsuuVjBi+H6v0RKxNJNGY3JKDiEH2TK0UE2auJ5GvLW48aUVFcQMB7euCWYXlSWVRHh3WLU8QXF29Dw4JduRZqUpOdRgMHU79UHRq+mkE0jAS/nBcS6CvsmxCpTSrfVYuMOu32yt18QQoTyU="
180 181 182
    on_success: change
    on_failure: always
    skip_join: true