File tree 2 files changed +26
-1
lines changed
2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -570,11 +570,19 @@ jobs:
570
570
-Dwith-libneurosim=${{ contains(matrix.use, 'libneurosim') && '$HOME/.cache/libneurosim.install' || 'OFF' }} \
571
571
..
572
572
573
+ - name : " Add GCC problem matcher"
574
+ run : |
575
+ echo "::add-matcher::gcc_problem_matcher.json"
576
+
573
577
- name : " Build NEST"
574
578
run : |
575
579
cd "$NEST_VPATH"
576
580
env
577
- make VERBOSE=1
581
+ gcc-problem-matcher make VERBOSE=1
582
+
583
+ - name : " Remove GCC problem matcher"
584
+ run : |
585
+ echo "::remove-matcher owner=gcc-problem-matcher::"
578
586
579
587
- name : " Install NEST"
580
588
run : |
Original file line number Diff line number Diff line change
1
+ {
2
+ "problemMatcher" : [
3
+ {
4
+ "owner" : " gcc-problem-matcher" ,
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
+ }
You can’t perform that action at this time.
0 commit comments