diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-30 19:11:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-30 19:11:24 +0300 |
commit | b35d3023119faaa4503e13fd3e8632df4374c83b (patch) | |
tree | 5cd624087b8957a2423047ec574f24a2e4b8bb4b /tools/ci/branches/ci_clang-tidy | |
parent | 9bea13f0a8c965fd70fb7af44cfb27770f5a31e2 (diff) | |
download | plus-b35d3023119faaa4503e13fd3e8632df4374c83b.tar.gz plus-b35d3023119faaa4503e13fd3e8632df4374c83b.tar.bz2 plus-b35d3023119faaa4503e13fd3e8632df4374c83b.tar.xz plus-b35d3023119faaa4503e13fd3e8632df4374c83b.zip |
Add .gitlab-ci.yml from all ci branches.
Diffstat (limited to 'tools/ci/branches/ci_clang-tidy')
-rw-r--r-- | tools/ci/branches/ci_clang-tidy/.gitlab-ci.yml | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/tools/ci/branches/ci_clang-tidy/.gitlab-ci.yml b/tools/ci/branches/ci_clang-tidy/.gitlab-ci.yml new file mode 100644 index 000000000..38cd864c9 --- /dev/null +++ b/tools/ci/branches/ci_clang-tidy/.gitlab-ci.yml @@ -0,0 +1,73 @@ +stages: + - build + +# with :; prevent from run it on windows +before_script: + - ":; uname -a" + - ":; cat /etc/os-release" + - ":; pwd" + - ":; cat /proc/sys/kernel/core_pattern" + - ":; mkdir logs || true" + - ":; ${UPDATEREPOS}" + - ":; ${DOCKERRETRY} ${PMUPDATE} >logs/apt.log" + - ":; ${DOCKERRETRY} ${PMINSTALL} ${PACKAGES} >>logs/apt.log" + - ":; ./tools/ci/scripts/clonesrc.sh" + - ":; cd manaplus" + +image: debian:unstable +variables: + GET_SOURCES_ATTEMPTS: "5" + ARTIFACT_DOWNLOAD_ATTEMPTS: "5" + UPDATEREPOS: "tools/ci/scripts/updaterepos.sh" + PMUPDATE: "apt-get update" + PMINSTALL: "apt-get install -y -qq" + DOCKERRETRY: "./tools/ci/scripts/dockerretry.sh" + GIT_DEPTH: "1" + +.job-push: &job-push + artifacts: + paths: + - logs + when: always + expire_in: 3 week + dependencies: [] + +.job-always: &job-always + artifacts: + paths: + - logs + when: always + expire_in: 3 week + dependencies: [] + +clang-tidy: + stage: build + script: + - ./tools/ci/jobs/clang_tidy.sh + <<: *job-push + variables: + PACKAGES: clang clang-tidy + libxml2-dev libcurl4-gnutls-dev libpng-dev + libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev + git + FLAGS: "-readability-implicit-bool-cast,-clang-analyzer-optin.cplusplus.VirtualCall,-performance-unnecessary-value-param,-misc-unused-parameters,-modernize-use-default,-clang-analyzer-alpha.deadcode.UnreachableCode,-clang-analyzer-alpha.cplusplus.VirtualCall,-clang-analyzer-alpha.unix.Stream,-clang-analyzer-alpha.security.taint.TaintPropagation,-clang-analyzer-alpha.core.CastToStruct,-clang-analyzer-alpha.core.BoolAssignment" + DFLAGS: "-DENABLE_LIBXML -DTMWA_SUPPORT -DDEBUGBUILD" + INCLUDES: "-I/usr/include -I/usr/include/SDL -I/usr/include/libxml2" + tags: + - docker + +clang-tidy_sdl2: + stage: build + script: + - ./tools/ci/jobs/clang_tidy.sh + <<: *job-push + variables: + PACKAGES: clang clang-tidy + libxml2-dev libcurl4-gnutls-dev libpng-dev + libsdl2-gfx-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf-dev + git + FLAGS: "-readability-implicit-bool-cast,-clang-analyzer-optin.cplusplus.VirtualCall,-performance-unnecessary-value-param,-misc-unused-parameters,-modernize-use-default,-clang-analyzer-alpha.deadcode.UnreachableCode,-clang-analyzer-alpha.cplusplus.VirtualCall,-clang-analyzer-alpha.unix.Stream,-clang-analyzer-alpha.security.taint.TaintPropagation,-clang-analyzer-alpha.core.CastToStruct,-clang-analyzer-alpha.core.BoolAssignment,-cppcoreguidelines-pro-type-cstyle-cast" + DFLAGS: "-DENABLE_LIBXML -DTMWA_SUPPORT -DDEBUGBUILD -DUSE_SDL2" + INCLUDES: "-I/usr/include -I/usr/include/SDL2 -I/usr/include/libxml2" + tags: + - docker |