summaryrefslogtreecommitdiff
path: root/ci/git-problem-matcher.json
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2020-04-29 16:15:29 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2020-04-29 16:15:29 -0700
commit8cb514d1cbaf7b8adfc92e348a1706acc62fabdb (patch)
treef7a8bbb625ee8cc56a29911da17c73e8d79c8e95 /ci/git-problem-matcher.json
parentMerge branch 'dd/ci-musl-libc' (diff)
parentci: let GitHub Actions upload failed tests' directories (diff)
downloadtgif-8cb514d1cbaf7b8adfc92e348a1706acc62fabdb.tar.xz
Merge branch 'dd/ci-swap-azure-pipelines-with-github-actions'
Update the CI configuration to use GitHub Actions, retiring the one based on Azure Pipelines. * dd/ci-swap-azure-pipelines-with-github-actions: ci: let GitHub Actions upload failed tests' directories ci: add a problem matcher for GitHub Actions tests: when run in Bash, annotate test failures with file name/line number ci: retire the Azure Pipelines definition README: add a build badge for the GitHub Actions runs ci: configure GitHub Actions for CI/PR ci: run gem with sudo to install asciidoctor ci: explicit install all required packages ci: fix the `jobname` of the `GETTEXT_POISON` job ci/lib: set TERM environment variable if not exist ci/lib: allow running in GitHub Actions ci/lib: if CI type is unknown, show the environment variables
Diffstat (limited to 'ci/git-problem-matcher.json')
-rw-r--r--ci/git-problem-matcher.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/ci/git-problem-matcher.json b/ci/git-problem-matcher.json
new file mode 100644
index 0000000000..506dfbd97f
--- /dev/null
+++ b/ci/git-problem-matcher.json
@@ -0,0 +1,16 @@
+{
+ "problemMatcher": [
+ {
+ "owner": "git-test-suite",
+ "pattern": [
+ {
+ "regexp": "^([^ :]+\\.sh):(\\d+): (error|warning|info):\\s+(.*)$",
+ "file": 1,
+ "line": 2,
+ "severity": 3,
+ "message": 4
+ }
+ ]
+ }
+ ]
+}