aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 04eb6c5309678efae3b2fc861e6e801323c82be5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
image: ubuntu:20.10

before_script:
  - apt-get --quiet update --yes >/dev/null
  - apt-get --quiet install --yes clang-11 clang-tidy-11 clang-format-11 git libdrm-dev blueprint-tools libgtest-dev >/dev/null

stages:
  - build
  - style

build:
  stage: build
  script: "./.ci/.gitlab-ci-clang-build.sh"
  artifacts:
    when: on_failure
    untracked: true

checkstyle:
  stage: style
  script: "./.ci/.gitlab-ci-checkcommit.sh"
  artifacts:
    when: on_failure
    untracked: true

tidy-coarse:
  stage: style
  script: "./.ci/.gitlab-ci-clang-tidy-coarse.sh"
  artifacts:
    when: on_failure
    untracked: true

tidy-fine:
  stage: style
  script: "./.ci/.gitlab-ci-clang-tidy-fine.sh"
  artifacts:
    when: on_failure
    untracked: true