aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: e06f6b18596bf21e2538b17c5e2c427fb310edec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
image: "flowdalic/debian-dev:1.4"

before_script:
  - |
    TOOLS="cc c++ clang clang++ gcc g++ clang-tidy clang meson"
    for tool in $TOOLS; do
      echo "$tool version"
      $tool --version
    done

stages:
  - build
  - test

build:
  stage: build
  script: make

check-format:
  stage: test
  script: make check