We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4781ef1 commit 6a75610Copy full SHA for 6a75610
.github/gcc.json
@@ -0,0 +1,17 @@
1
+{
2
+ "problemMatcher": [
3
+ {
4
+ "owner": "gcc",
5
+ "pattern": [
6
7
+ "regexp": "^(.*):(\\d+):(\\d+):\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
8
+ "file": 1,
9
+ "line": 2,
10
+ "column": 3,
11
+ "severity": 4,
12
+ "message": 5
13
+ }
14
+ ]
15
16
17
+}
.github/workflows/main.yml
@@ -10,7 +10,9 @@ jobs:
- uses: actions/checkout@v2
- name: Build tests
- run: docker buildx build . --target test -t spectrum:tests
+ run: |
+ echo "::add-matcher::.github/gcc.json"
+ docker buildx build . --target test -t spectrum:tests
- name: Run tests
run: docker run -tt spectrum:tests
18
linux-clang:
0 commit comments