From d51ead56f943eac8fe5f84bbe78023e13fa25e5f Mon Sep 17 00:00:00 2001 From: Jacob Hageman Date: Wed, 8 Jan 2020 10:48:44 -0500 Subject: [PATCH] Fix #39, Improve CI testing --- .travis.yml | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6dc220d6f..4978b51a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,16 +10,26 @@ addons: - ubuntu-toolchain-r-test packages: - cmake +env: + global: + - SIMULATION=native + - ENABLE_UNIT_TESTS=true + matrix: + - BUILDTYPE=release OMIT_DEPRECATED=true + - BUILDTYPE=release OMIT_DEPRECATED=false + - BUILDTYPE=debug OMIT_DEPRECATED=true + - BUILDTYPE=debug OMIT_DEPRECATED=false before_install: - - sudo apt-get install cppcheck + - sudo apt-get install cppcheck doxygen lcov graphviz script: # Check versions - cppcheck --version - # Setup standard build + # Setup standard permissive build - cp cfe/cmake/Makefile.sample Makefile - cp -r cfe/cmake/sample_defs sample_defs + - sed -i 's/undef OSAL_DEBUG_PERMISSIVE_MODE/define OSAL_DEBUG_PERMISSIVE_MODE/g' sample_defs/default_osconfig.h # Static code analysis # Below is intent but fails - exit code bug in cppcheck 1.82 # - cppcheck --force --inline-suppr --quiet --error-exitcode=1 . @@ -36,5 +46,26 @@ script: - make prep - make - make install + # Run unit tests and generate coverage results + - make test + - make lcov + # Eventually check/enforce minimum coverage + # Make documentation + - make doc + - make usersguide + - make osalguide + # Eventually enforce no doxygen warnings # List cpu1 for core binary - ls build/exe/cpu1/ + # Start cFE (pipe output to file), pause, send reset command, check outputs + - cd build/exe/cpu1 + - ./core-cpu1 > cFS_startup.txt & + - sleep 30 + - ../host/cmdUtil --endian=LE --pktid=0x1806 --cmdcode=2 --half=0x0002 + - | + if [[ -n $(grep -i "warn\|err\|fail" cFS_startup.txt) ]]; then + echo "Must resolve warn|err|fail in cFS startup before submitting a pull request" + echo "" + grep -i 'warn\|err\|fail' cFS_startup.txt + exit -1 + fi