• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1image: ubuntu:21.10
2
3variables:
4  DEBIAN_FRONTEND: noninteractive
5
6before_script:
7  - apt-get --quiet update --yes >/dev/null
8  - apt-get --quiet install --yes clang-13 clang-tidy-13 clang-format-13 git libdrm-dev blueprint-tools libgtest-dev make >/dev/null
9
10stages:
11  - build
12  - style
13
14build:
15  stage: build
16  script:
17    - make -f .ci/Makefile
18  artifacts:
19    when: on_failure
20    untracked: true
21
22checkstyle:
23  stage: style
24  script: "./.ci/.gitlab-ci-checkcommit.sh"
25  artifacts:
26    when: on_failure
27    untracked: true
28