Commit 18edd289 authored by Simon Giesecke's avatar Simon Giesecke

Problem: clang version used for analysis is outdated

Solution: update to clang 8
parent de3e03c1
...@@ -29,18 +29,18 @@ env: ...@@ -29,18 +29,18 @@ env:
matrix: matrix:
include: include:
- if: type = cron OR (branch =~ analyze$ AND type = push) - if: type = cron OR (branch =~ analyze$ AND type = push)
env: BUILD_TYPE=cmake CLANG_TIDY=/usr/bin/clang-tidy-6.0 CC=clang-6.0 CXX=clang++-6.0 env: BUILD_TYPE=cmake CLANG_TIDY=/usr/bin/clang-tidy-8 CC=clang-8 CXX=clang++-8
os: linux os: linux
compiler: clang compiler: clang
addons: addons:
apt: apt:
sources: sources:
- ubuntu-toolchain-r-test - ubuntu-toolchain-r-test
- llvm-toolchain-trusty-6.0 - llvm-toolchain-trusty-8
packages: packages:
- clang-6.0 - clang-8
- clang-tools-6.0 - clang-tools-8
- clang-tidy-6.0 - clang-tidy-8
- env: BUILD_TYPE=default CURVE=tweetnacl IPv6=ON - env: BUILD_TYPE=default CURVE=tweetnacl IPv6=ON
os: linux os: linux
dist: precise dist: precise
......
...@@ -60,8 +60,8 @@ if [ -n "$CLANG_TIDY" ] ; then ...@@ -60,8 +60,8 @@ if [ -n "$CLANG_TIDY" ] ; then
MAKE_PREFIXES+=("${TRAVIS_BUILD_DIR}/bw-output") MAKE_PREFIXES+=("${TRAVIS_BUILD_DIR}/bw-output")
fi fi
CMAKE_PREFIXES+=("scan-build-6.0") CMAKE_PREFIXES+=("scan-build-8")
MAKE_PREFIXES+=("scan-build-6.0") MAKE_PREFIXES+=("scan-build-8")
MAKE_PREFIXES+=("-plist-html") MAKE_PREFIXES+=("-plist-html")
SCAN_BUILD_OUTPUT="$(pwd)/scan-build-report" SCAN_BUILD_OUTPUT="$(pwd)/scan-build-report"
MAKE_PREFIXES+=("-o ${SCAN_BUILD_OUTPUT}") MAKE_PREFIXES+=("-o ${SCAN_BUILD_OUTPUT}")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment