blob: eb0c2654813fbcbc2c05a8a30c9b1851dc8e481b [file] [log] [blame]
Roman Stratiienkocf80b9b2022-04-28 15:42:36 +03001image: ubuntu:22.04
Roman Stratiienkod26619b2021-08-04 19:55:37 +03002
3variables:
4 DEBIAN_FRONTEND: noninteractive
Stefan Schake02346782018-05-05 02:39:33 +02005
6before_script:
7 - apt-get --quiet update --yes >/dev/null
Roman Stratiienkocf80b9b2022-04-28 15:42:36 +03008 - apt-get --quiet install --yes clang-14 clang-tidy-14 clang-format-14 git libdrm-dev blueprint-tools libgtest-dev make >/dev/null
Stefan Schake02346782018-05-05 02:39:33 +02009
10stages:
Roman Stratiienkod518a052021-02-25 19:15:14 +020011 - build
Stefan Schake02346782018-05-05 02:39:33 +020012 - style
13
Roman Stratiienkod518a052021-02-25 19:15:14 +020014build:
15 stage: build
Roman Stratiienkocef5c772021-12-22 16:22:24 +020016 script:
17 - make -f .ci/Makefile
Roman Stratiienkod518a052021-02-25 19:15:14 +020018 artifacts:
19 when: on_failure
20 untracked: true
21
Sean Paul592c98a2018-09-04 15:30:29 -040022checkstyle:
Stefan Schake02346782018-05-05 02:39:33 +020023 stage: style
Roman Stratiienkod518a052021-02-25 19:15:14 +020024 script: "./.ci/.gitlab-ci-checkcommit.sh"
25 artifacts:
26 when: on_failure
27 untracked: true