File tree 6 files changed +23
-0
lines changed
6 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 60
60
run : |
61
61
make check -i
62
62
echo "Tests failed: " $(grep :test-result examples/*/*.trs | grep FAIL | wc -l)
63
+ ./etc/actions/failed_tests_logs.sh
63
64
64
65
- name : Install
65
66
run : make install
@@ -115,6 +116,7 @@ jobs:
115
116
run : |
116
117
make check -i
117
118
echo "Tests failed: " $(grep :test-result examples/*/*.trs | grep FAIL | wc -l)
119
+ ./etc/actions/failed_tests_logs.sh
118
120
119
121
- name : Install
120
122
run : make install
Original file line number Diff line number Diff line change 94
94
run : |
95
95
make check -i
96
96
echo "Tests failed: " $(grep :test-result examples/*/*.trs | grep FAIL | wc -l)
97
+ ./etc/actions/failed_tests_logs.sh
Original file line number Diff line number Diff line change 60
60
run : |
61
61
make check -i
62
62
echo "Tests failed: " $(grep :test-result examples/*/*.trs | grep FAIL | wc -l)
63
+ ./etc/actions/failed_tests_logs.sh
63
64
64
65
- name : Install
65
66
run : make install
@@ -126,6 +127,7 @@ jobs:
126
127
run : |
127
128
make check -i
128
129
echo "Tests failed: " $(grep :test-result examples/*/*.trs | grep FAIL | wc -l)
130
+ ./etc/actions/failed_tests_logs.sh
129
131
130
132
- name : Install
131
133
run : make install
Original file line number Diff line number Diff line change 45
45
run : |
46
46
make check -i
47
47
echo "Tests failed: " $(grep :test-result examples/*/*.trs | grep FAIL | wc -l)
48
+ ./etc/actions/failed_tests_logs.sh
48
49
49
50
- name : Install
50
51
run : make install
83
84
run : |
84
85
make check -i
85
86
echo "Tests failed: " $(grep :test-result examples/*/*.trs | grep FAIL | wc -l)
87
+ ./etc/actions/failed_tests_logs.sh
86
88
87
89
- name : Install
88
90
run : make install
@@ -133,3 +135,4 @@ jobs:
133
135
run : |
134
136
make check -i
135
137
echo "Tests failed: " $(grep :test-result examples/*/*.trs | grep FAIL | wc -l)
138
+ ./etc/actions/failed_tests_logs.sh
Original file line number Diff line number Diff line change 49
49
run : |
50
50
make check -i
51
51
echo "Tests failed: " $(grep :test-result examples/*/*.trs | grep FAIL | wc -l)
52
+ ./etc/actions/failed_tests_logs.sh
52
53
53
54
- name : Install
54
55
run : make install
87
88
run : |
88
89
make check -i
89
90
echo "Tests failed: " $(grep :test-result examples/*/*.trs | grep FAIL | wc -l)
91
+ ./etc/actions/failed_tests_logs.sh
90
92
91
93
- name : Install
92
94
run : make install
@@ -144,3 +146,4 @@ jobs:
144
146
run : |
145
147
make check -i
146
148
echo "Tests failed: " $(grep :test-result examples/*/*.trs | grep FAIL | wc -l)
149
+ ./etc/actions/failed_tests_logs.sh
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ FAILED_TESTS=( $( grep :test-result examples/* /* .trs | grep FAIL) )
4
+
5
+ for val in ${FAILED_TESTS[@]/#* FAIL/ }
6
+ do
7
+ IFS=" ::"
8
+ read -ra path <<< $val
9
+ printf " \n******** ${path% .* } .log ********\n\n"
10
+ cat ${path% .* } .log
11
+ unset IFS
12
+ done ;
You can’t perform that action at this time.
0 commit comments