Skip to content
Snippets Groups Projects
Commit 44860441 authored by kongr45gpen's avatar kongr45gpen
Browse files

Make tests run faster by not requiring all dependencies for all jobs

parent 6a2f34bf
No related branches found
No related tags found
No related merge requests found
image: rikorose/gcc-cmake image: rikorose/gcc-cmake
before_script: before_script:
- apt-get update -qq && apt-get install -y -qq cppcheck vera++ clang-tidy-4.0
- g++ --version - g++ --version
- cppcheck --version
- vera++ --version
- clang-tidy-4.0 --version
- cp ci/vera.profile /usr/lib/vera++/profiles/custom
build: build:
script: script:
...@@ -17,13 +12,23 @@ build: ...@@ -17,13 +12,23 @@ build:
- make -j4 - make -j4
cppcheck: cppcheck:
before_script:
- apt-get update -qq && apt-get install -y -qq cppcheck
- cppcheck --version
script: script:
- bash -x ci/cppcheck.sh - bash -x ci/cppcheck.sh
vera: vera:
before_script:
- apt-get update -qq && apt-get install -y -qq vera++
- vera++ --version
- cp ci/vera.profile /usr/lib/vera++/profiles/custom
script: script:
- bash -x ci/vera.sh - bash -x ci/vera.sh
clang-tidy: clang-tidy:
before_script:
- apt-get update -qq && apt-get install -y -qq clang-tidy-4.0
- clang-tidy-4.0 --version
script: script:
- bash -x ci/clang-tidy.sh - bash -x ci/clang-tidy.sh
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment