From bf93df730baa57f9f63571d7c82e85c1b704a5d9 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Wed, 2 Jun 2021 01:08:31 +0200 Subject: [PATCH] fix linter errors --- .gitlab-ci.yml | 2 +- proto/caosdb/info/v1alpha1/main.proto | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b0486f0..c9e6592 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -51,7 +51,7 @@ code_style: tags: [ docker ] stage: test script: - - clang-format-11 --dry-run --verbose $(find ./proto -type f -iname "*.proto") + - clang-format-11 --dry-run --verbose --Werror $(find ./proto -type f -iname "*.proto") allow_failure: true # buf linting diff --git a/proto/caosdb/info/v1alpha1/main.proto b/proto/caosdb/info/v1alpha1/main.proto index 59e7b40..099ee9a 100644 --- a/proto/caosdb/info/v1alpha1/main.proto +++ b/proto/caosdb/info/v1alpha1/main.proto @@ -35,6 +35,7 @@ message VersionInfo { uint32 patch = 3; // Pre-release version string pre_release = 4; + // Build metadata string build = 5; } -- GitLab