blob: 9a54b44d48632b54b83a5b0bc0a823ce1fe3ba44 [file] [log] [blame]
Roman Stratiienkod26619b2021-08-04 19:55:37 +03001image: ubuntu:21.04
2
3variables:
4 DEBIAN_FRONTEND: noninteractive
Stefan Schake02346782018-05-05 02:39:33 +02005
6before_script:
7 - apt-get --quiet update --yes >/dev/null
Roman Stratiienkocef5c772021-12-22 16:22:24 +02008 - apt-get --quiet install --yes clang-12 clang-tidy-12 clang-format-12 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