]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Revert "ci: add a problem matcher for GitHub Actions"
authorJunio C Hamano <gitster@pobox.com>
Fri, 15 May 2020 17:24:02 +0000 (10:24 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 15 May 2020 17:25:58 +0000 (10:25 -0700)
This reverts commit 676eb0c1ce0d380478eb16bdc5a3f2a7bc01c1d2;
as we will be reverting the change to show these extra output
tokens under bash, the pattern would not match anything.

Helped-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
ci/git-problem-matcher.json [deleted file]
ci/lib.sh

diff --git a/ci/git-problem-matcher.json b/ci/git-problem-matcher.json
deleted file mode 100644 (file)
index 506dfbd..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-{
-    "problemMatcher": [
-        {
-            "owner": "git-test-suite",
-            "pattern": [
-                {
-                    "regexp": "^([^ :]+\\.sh):(\\d+): (error|warning|info):\\s+(.*)$",
-                    "file": 1,
-                    "line": 2,
-                    "severity": 3,
-                    "message": 4
-                }
-            ]
-        }
-    ]
-}
index dac36886e3744fba251506be53d48034adcecd17..ff24c547c8bb56a244eb5b1b3ca11e4bd32ea31a 100755 (executable)
--- a/ci/lib.sh
+++ b/ci/lib.sh
@@ -157,11 +157,6 @@ then
        MAKEFLAGS="$MAKEFLAGS --jobs=10"
        test windows != "$CI_OS_NAME" ||
        GIT_TEST_OPTS="--no-chain-lint --no-bin-wrappers $GIT_TEST_OPTS"
-
-       # https://github.com/actions/toolkit/blob/master/docs/commands.md#problem-matchers
-       echo "::add-matcher::ci/git-problem-matcher.json"
-       test linux-musl = "$jobname" ||
-       MAKEFLAGS="$MAKEFLAGS TEST_SHELL_PATH=/bin/sh"
 else
        echo "Could not identify CI type" >&2
        env >&2