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:
matrix:
include:
- 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
compiler: clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-6.0
- llvm-toolchain-trusty-8
packages:
- clang-6.0
- clang-tools-6.0
- clang-tidy-6.0
- clang-8
- clang-tools-8
- clang-tidy-8
- env: BUILD_TYPE=default CURVE=tweetnacl IPv6=ON
os: linux
dist: precise
......
......@@ -60,8 +60,8 @@ if [ -n "$CLANG_TIDY" ] ; then
MAKE_PREFIXES+=("${TRAVIS_BUILD_DIR}/bw-output")
fi
CMAKE_PREFIXES+=("scan-build-6.0")
MAKE_PREFIXES+=("scan-build-6.0")
CMAKE_PREFIXES+=("scan-build-8")
MAKE_PREFIXES+=("scan-build-8")
MAKE_PREFIXES+=("-plist-html")
SCAN_BUILD_OUTPUT="$(pwd)/scan-build-report"
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