summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 43bce5fc642470116d065af9ee272096939cd3d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
image: ubuntu:16.04

before_script:
  - apt-get --quiet update --yes >/dev/null
  - apt-get --quiet install --yes clang-format-3.5 git >/dev/null

stages:
  - style

clang-format:
  stage: style
  script:
    - git fetch https://gitlab.freedesktop.org/drm-hwcomposer/drm-hwcomposer.git
    - git diff -U0 --no-color FETCH_HEAD...HEAD -- | clang-format-diff-3.5 -p 1 -style=file > format-fixup.patch
    - if [ -s format-fixup.patch ]; then cat format-fixup.patch && exit 1; fi
  artifacts:
    when: on_failure
    paths:
      - format-fixup.patch