X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=.travis.yml;h=c79040ded53c04dc55acbf84a78922922e65586f;hp=e9e5aa2ca0f2a7373ffb1526a4555707a7ddc098;hb=b89fdeb2f7d4471cbfd8a579945754327a4e06a8;hpb=275bfc56a6c4efa7e80c8cbb11fda0c3f9be818d diff --git a/.travis.yml b/.travis.yml index e9e5aa2ca0..c79040ded5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ language: c cache: ccache git: submodules: false + quiet: true before_install: - if [ -n "$COVERALLS" ]; then @@ -27,14 +28,14 @@ compiler: env: - CONFIG_OPTS="" DESTDIR="_install" - CONFIG_OPTS="no-asm -Werror --debug no-afalgeng no-shared enable-crypto-mdebug enable-rc5 enable-md2" - - CONFIG_OPTS="no-asm no-makedepend --strict-warnings -std=c89 -D_DEFAULT_SOURCE" BUILDONLY="yes" CHECKDOCS="yes" GENERATE="yes" + - CONFIG_OPTS="no-asm no-makedepend enable-buildtest-c++ --strict-warnings -D_DEFAULT_SOURCE" BUILDONLY="yes" CHECKDOCS="yes" GENERATE="yes" CPPFLAGS="-ansi" matrix: include: - #- os: linux-ppc64le - # sudo: false - # compiler: clang - # env: CONFIG_OPTS="--strict-warnings -D__NO_STRING_INLINES" + - os: linux-ppc64le + sudo: false + compiler: clang + env: CONFIG_OPTS="--strict-warnings -D__NO_STRING_INLINES" - os: linux addons: apt: @@ -119,6 +120,18 @@ matrix: - gcc-mingw-w64 compiler: x86_64-w64-mingw32-gcc env: EXTENDED_TEST="yes" CONFIG_OPTS="no-pic" + - os: linux + language: python + python: 3.7 + dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069) + sudo: required # required for Python 3.7 (travis-ci/travis-ci#9069) + install: pip install flake8 + before_script: + # stop the build if there are Python syntax errors or undefined names + - flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + script: true exclude: - os: linux compiler: clang