aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorSean Paul <seanpaul@chromium.org>2018-07-13 12:51:42 -0400
committerSean Paul <seanpaul@chromium.org>2018-08-27 13:38:45 -0400
commit5c23d5d582d378f1e7f2da3878b11c7e595019f6 (patch)
tree2ca6c550a4700b3a3177c7c19f501be67d72b52d /.gitlab-ci.yml
parentb6a675e6349e289f209cefcb3eacbf4faa26e567 (diff)
downloaddrm_hwcomposer-5c23d5d582d378f1e7f2da3878b11c7e595019f6.tar.gz
drm_hwcomposer: Update clang-format to 5.0
Updating clang-format to 5.0 to get a bit more control over our styling. Two things that will be beneficial: - Alphabeticalize headers - More control around line breaking, especially preferring val = SomeFunction(arg1, arg2); vs: val = SomeFunction(arg1, arg2); It's still not perfect, but it seems greatly improved. Signed-off-by: Sean Paul <seanpaul@chromium.org>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 43bce5f..24c4a0a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,7 @@ 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
+ - apt-get --quiet install --yes clang-format-5.0 git >/dev/null
stages:
- style
@@ -11,7 +11,7 @@ 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
+ - git diff -U0 --no-color FETCH_HEAD...HEAD -- | clang-format-diff-5.0 -p 1 -style=file > format-fixup.patch
- if [ -s format-fixup.patch ]; then cat format-fixup.patch && exit 1; fi
artifacts:
when: on_failure