2012-09-02 11:37:18 +02:00
|
|
|
language: cpp
|
2019-03-20 15:30:01 +01:00
|
|
|
dist: xenial
|
2014-03-17 13:23:29 +01:00
|
|
|
|
2012-09-02 11:37:18 +02:00
|
|
|
compiler:
|
2014-03-23 19:14:31 +01:00
|
|
|
- gcc
|
2017-04-02 19:32:00 +02:00
|
|
|
- clang
|
2014-03-17 13:23:29 +01:00
|
|
|
|
2014-01-04 11:37:03 +01:00
|
|
|
env:
|
|
|
|
global:
|
2021-02-21 14:17:02 +01:00
|
|
|
- ORIGINAL_CXXFLAGS="-pedantic -Wall -Wextra -Wcast-qual -Wno-deprecated-declarations -Wfloat-equal -Wmissing-declarations -Wmissing-format-attribute -Wno-long-long -Wpacked -Wredundant-decls -Wundef -Wno-shadow -Wno-missing-field-initializers -Wno-missing-braces -Wno-sign-compare -Wno-multichar -D_GLIBCXX_DEBUG -g"
|
2015-11-10 20:44:24 +01:00
|
|
|
# unfortunately we need this to stay within 50min timelimit given by travis.
|
2017-06-05 23:10:28 +02:00
|
|
|
- CXXFLAGS="${ORIGINAL_CXXFLAGS} -O2 -march=native -Wstrict-aliasing=2 -Werror=strict-aliasing"
|
2018-05-13 11:08:48 +02:00
|
|
|
- CPPCHECK=${TRAVIS_BUILD_DIR}/cppcheck
|
2014-01-04 11:37:03 +01:00
|
|
|
matrix:
|
2014-05-24 10:22:59 +02:00
|
|
|
- CXXFLAGS="${CXXFLAGS} -DCHECK_INTERNAL"
|
2019-06-23 13:43:09 +02:00
|
|
|
- CXXFLAGS="${CXXFLAGS} -DCHECK_INTERNAL" MAKEFLAGS="HAVE_RULES=yes" MATCHCOMPILER=yes VERIFY=1
|
2014-03-17 13:23:29 +01:00
|
|
|
|
2019-01-12 16:30:47 +01:00
|
|
|
before_install:
|
|
|
|
# install needed deps
|
2019-03-21 13:51:14 +01:00
|
|
|
- travis_retry sudo apt-get update -qq
|
2022-04-11 07:30:55 +02:00
|
|
|
- travis_retry sudo apt-get install -qq python3-pip libxml2-utils libpcre3 gdb unzip wx-common xmlstarlet python3-dev liblua5.3-dev libcurl3 libcairo2-dev libsigc++-2.0-dev tidy libopencv-dev
|
2019-09-19 20:46:16 +02:00
|
|
|
# Python 2 modules
|
2019-07-26 15:40:25 +02:00
|
|
|
- travis_retry python2 -m pip install --user pytest==4.6.4
|
2019-07-24 21:09:53 +02:00
|
|
|
- travis_retry python2 -m pip install --user unittest2
|
2019-10-26 21:10:21 +02:00
|
|
|
- travis_retry python2 -m pip install --user pexpect # imported by tools/ci.py
|
2019-11-01 09:10:10 +01:00
|
|
|
- travis_retry python2 -m pip install --user pygments
|
2019-09-19 20:46:16 +02:00
|
|
|
# Python 3 modules
|
2019-10-26 21:10:21 +02:00
|
|
|
- travis_retry python3 -m pip install --user setuptools --upgrade
|
2019-09-19 20:46:16 +02:00
|
|
|
- travis_retry python3 -m pip install --user pytest
|
2019-10-26 21:10:21 +02:00
|
|
|
- travis_retry python3 -m pip install --user unittest2
|
|
|
|
- travis_retry python3 -m pip install --user pexpect # imported by tools/ci.py
|
|
|
|
- travis_retry python3 -m pip install --user requests # imported by tools/pr.py
|
2019-11-01 09:10:10 +01:00
|
|
|
- travis_retry python3 -m pip install --user pygments
|
2020-01-26 18:39:37 +01:00
|
|
|
- travis_retry python3 -m pip install --user natsort
|
2019-01-12 16:30:47 +01:00
|
|
|
|
2014-01-17 20:46:20 +01:00
|
|
|
matrix:
|
2014-03-17 13:23:29 +01:00
|
|
|
# do notify immediately about it when a job of a build fails.
|
2014-01-17 20:46:20 +01:00
|
|
|
fast_finish: true
|
2019-01-11 19:47:17 +01:00
|
|
|
# defined extra jobs that run besides what is configured in the build matrix
|
2019-01-09 09:54:46 +01:00
|
|
|
include:
|
2020-05-07 18:55:22 +02:00
|
|
|
|
2019-01-09 09:54:46 +01:00
|
|
|
# check a lot of stuff that only needs to be checked in a single configuration
|
|
|
|
- name: "misc"
|
|
|
|
compiler: clang
|
|
|
|
script:
|
2020-12-26 16:55:30 +01:00
|
|
|
- make -j$(nproc) -s
|
2019-01-09 09:54:46 +01:00
|
|
|
# check if DESTDIR works TODO: actually execute this
|
|
|
|
- mkdir install_test
|
|
|
|
- echo $CXXFLAGS
|
2019-08-17 17:25:41 +02:00
|
|
|
- make -s DESTDIR=install_test FILESDIR=/usr/share/cppcheck install
|
2019-01-09 09:54:46 +01:00
|
|
|
# rm everything
|
|
|
|
- git clean -dfx
|
|
|
|
# check what happens if we want to install it to some other dir,
|
|
|
|
- echo $CXXFLAGS
|
2020-12-26 16:55:30 +01:00
|
|
|
- make -s MATCHCOMPILER=yes FILESDIR=/usr/share/cppcheck -j$(nproc)
|
2019-08-17 10:53:07 +02:00
|
|
|
- sudo make MATCHCOMPILER=yes FILESDIR=/usr/share/cppcheck install
|
2019-01-09 09:54:46 +01:00
|
|
|
# check if it actually works:
|
2021-04-09 07:47:11 +02:00
|
|
|
- /usr/bin/cppcheck -j$(nproc) ./cli
|
2019-03-14 14:49:02 +01:00
|
|
|
# check addons/misc.py
|
2019-01-09 09:54:46 +01:00
|
|
|
- cd addons/test
|
|
|
|
- ${CPPCHECK} --dump misc-test.cpp
|
|
|
|
- python3 ../misc.py -verify misc-test.cpp.dump
|
2019-03-14 14:49:02 +01:00
|
|
|
- cd ../../
|
|
|
|
# check addons/misra.py
|
|
|
|
- cd addons/test
|
2020-01-31 23:38:42 +01:00
|
|
|
# We'll force C89 standard to enable an additional verification for
|
|
|
|
# rules 5.4 and 5.5 which have standard-dependent options.
|
2021-07-22 08:46:28 +02:00
|
|
|
- ${CPPCHECK} --dump -DDUMMY --suppress=uninitvar --suppress=uninitStructMember --std=c89 misra/misra-test.c
|
|
|
|
- ${CPPCHECK} --dump -DDUMMY --suppress=uninitvar --suppress=uninitStructMember --std=c89 misra/misra-test.h
|
2019-07-26 06:38:03 +02:00
|
|
|
- python3 ../misra.py -verify misra/misra-test.c.dump
|
|
|
|
- ${CPPCHECK} --dump misra/misra-test.cpp
|
|
|
|
- python3 ../misra.py -verify misra/misra-test.cpp.dump
|
|
|
|
- python ../misra.py --rule-texts=misra/misra2012_rules_dummy_ascii.txt -verify misra/misra-test.cpp.dump
|
|
|
|
- python3 ../misra.py --rule-texts=misra/misra2012_rules_dummy_ascii.txt -verify misra/misra-test.cpp.dump
|
|
|
|
- python ../misra.py --rule-texts=misra/misra2012_rules_dummy_utf8.txt -verify misra/misra-test.cpp.dump
|
|
|
|
- python3 ../misra.py --rule-texts=misra/misra2012_rules_dummy_utf8.txt -verify misra/misra-test.cpp.dump
|
|
|
|
- python ../misra.py --rule-texts=misra/misra2012_rules_dummy_windows1250.txt -verify misra/misra-test.cpp.dump
|
|
|
|
- python3 ../misra.py --rule-texts=misra/misra2012_rules_dummy_windows1250.txt -verify misra/misra-test.cpp.dump
|
2019-01-09 09:54:46 +01:00
|
|
|
- cd ../../
|
2019-03-26 18:54:09 +01:00
|
|
|
# check addons/naming.py
|
|
|
|
- cd addons/test
|
|
|
|
- ${CPPCHECK} --dump naming_test.c
|
|
|
|
- python3 ../naming.py --var='[a-z].*' --function='[a-z].*' naming_test.c.dump
|
2019-11-18 18:41:57 +01:00
|
|
|
- ${CPPCHECK} --dump naming_test.cpp
|
|
|
|
- python3 ../naming.py --var='[a-z].*' --function='[a-z].*' naming_test.cpp.dump
|
2019-03-26 18:54:09 +01:00
|
|
|
- cd ../..
|
2019-01-09 09:54:46 +01:00
|
|
|
# check addons/namingng.py
|
|
|
|
- cd addons/test
|
|
|
|
- ${CPPCHECK} --dump namingng_test.c
|
|
|
|
- python3 ../namingng.py --configfile ../naming.json --verify namingng_test.c.dump
|
|
|
|
- cd ../..
|
2020-09-05 18:29:19 +02:00
|
|
|
|
2012-09-05 07:22:49 +02:00
|
|
|
script:
|
2017-10-20 19:26:05 +02:00
|
|
|
# fail the entire job as soon as one of the subcommands exits non-zero to save time and resources
|
2017-10-19 22:44:52 +02:00
|
|
|
- set -e
|
2015-07-31 15:33:27 +02:00
|
|
|
# check with TEST_MATHLIB_VALUE enabled
|
2015-10-14 10:50:53 +02:00
|
|
|
- touch lib/mathlib.cpp test/testmathlib.cpp
|
2017-06-06 22:54:16 +02:00
|
|
|
- echo $CXXFLAGS
|
2020-12-26 16:55:30 +01:00
|
|
|
- make -s check -j$(nproc) CPPFLAGS=-DTEST_MATHLIB_VALUE
|
2015-07-31 15:33:27 +02:00
|
|
|
- touch lib/mathlib.cpp test/testmathlib.cpp
|
2015-10-14 10:50:53 +02:00
|
|
|
# compile cppcheck, default build
|
2017-06-06 22:54:16 +02:00
|
|
|
- echo $CXXFLAGS
|
2020-12-26 16:55:30 +01:00
|
|
|
- make -s check -j$(nproc)
|