Fix incorrect header and linter scripts
authorPaul Bauer <paul.bauer.q@gmail.com>
Thu, 30 Apr 2020 12:03:15 +0000 (14:03 +0200)
committerPaul Bauer <paul.bauer.q@gmail.com>
Mon, 4 May 2020 13:48:04 +0000 (15:48 +0200)
Wrong grep flag meant that messages have not been printed.

Change-Id: I74b2088a12753d584929f9aa75ed915d400d8091

admin/containers/utility.py
admin/gitlab-ci/lint.gitlab-ci.yml

index 9dd9cf34ef38f825fbb30e2a202ece1d12b05a61..b556f85292c91d461502b808a24496954e9df45c 100644 (file)
@@ -1,3 +1,4 @@
+#
 # This file is part of the GROMACS molecular simulation package.
 #
 # Copyright (c) 2020, by the GROMACS development team, led by
index 5e485d5903524341062976671f31e5d19df3073f..2d56adecc30193baf4d5593c599f3edb1a7ed887 100644 (file)
@@ -64,7 +64,7 @@ clang-tidy:test:
     - echo "Revision used for branch point is $REV"
     - git show -s $REV
     - RUN_CLANG_TIDY=run-clang-tidy-$COMPILER_MAJOR_VERSION bash admin/clang-tidy.sh check --parallel=$KUBERNETES_CPU_LIMIT --warnings=clang-tidy.log --rev=$REV -B=$BUILD_DIR
-    - grep -iq "found code issues" clang-tidy.log | tee code-lint.txt || true
+    - grep -i "found code issues" clang-tidy.log | tee code-lint.txt || true
     - if [ -s code-lint.txt ] ; then echo "clang-tidy.sh found issues"; exit 1; fi
   artifacts:
     when: on_failure
@@ -96,7 +96,7 @@ clang-format:
     - echo "Revision used for branch point is $REV"
     - git show -s $REV
     - CLANG_FORMAT=clang-format-$COMPILER_MAJOR_VERSION admin/clang-format.sh check --rev=$REV --warnings=clang-format.log
-    - grep -iq "needs formatting" clang-format.log | tee formatting.txt || true
+    - grep -i "needs formatting" clang-format.log | tee formatting.txt || true
     - if [ -s formatting.txt ] ; then echo "clang-format.sh found issues"; exit 1; fi
   artifacts:
     when: on_failure
@@ -126,8 +126,8 @@ copyright-check:
     - echo "Revision used for branch point is $REV"
     - git show -s $REV
     - admin/copyright.sh check --rev=$REV --warnings=copyright.log
-    - grep -iq "copyright year" copyright.log | tee years.log || true
-    - grep -iq "copyright header" copyright.log | tee headers.log || true
+    - grep -i "copyright year" copyright.log | tee years.log || true
+    - grep -i "copyright header" copyright.log | tee headers.log || true
     - if [[ -s years.log || -s headers.log ]] ; then
       echo "Copyright information needs updating" ;
       exit 1 ;