File tree Expand file tree Collapse file tree 2 files changed +24
-8
lines changed Expand file tree Collapse file tree 2 files changed +24
-8
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,16 @@ jobs:
48
48
49
49
# This server starts and listen on 8084 port that is used for tests.
50
50
- name : Stop Mono server
51
- run : sudo systemctl kill mono-xsp4 || true
51
+ run : |
52
+ sudo netstat -tupln
53
+ sudo systemctl kill mono-xsp4 || echo "failed to kill mono-xsp4 (exit status $?)"
52
54
53
55
- name : Integration tests
54
56
env :
55
57
TT_ENABLE_COREDUMP_TESTS : ' 1'
56
- run : mage integrationfull
58
+ run : |
59
+ sudo netstat -tupln
60
+ mage integrationfull || { sudo netstat -tupln; exit 1; }
57
61
58
62
full-ci-ce-linux-arm64 :
59
63
if : false
@@ -140,12 +144,16 @@ jobs:
140
144
141
145
# This server starts and listen on 8084 port that is used for tests.
142
146
- name : Stop Mono server
143
- run : sudo systemctl kill mono-xsp4 || true
147
+ run : |
148
+ sudo netstat -tupln
149
+ sudo systemctl kill mono-xsp4 || echo "failed to kill mono-xsp4 (exit status $?)"
144
150
145
151
- name : Integration tests
146
152
env :
147
153
TT_ENABLE_COREDUMP_TESTS : ' 1'
148
- run : mage integrationfull
154
+ run : |
155
+ sudo netstat -tupln
156
+ mage integrationfull || { sudo netstat -tupln; exit 1; }
149
157
150
158
full-ci-macOS :
151
159
if : false
Original file line number Diff line number Diff line change @@ -56,10 +56,14 @@ jobs:
56
56
57
57
# This server starts and listen on 8084 port that is used for tests.
58
58
- name : Stop Mono server
59
- run : sudo systemctl kill mono-xsp4 || true
59
+ run : |
60
+ sudo netstat -tupln
61
+ sudo systemctl kill mono-xsp4 || echo "failed to kill mono-xsp4 (exit status $?)"
60
62
61
63
- name : Integration tests
62
- run : mage integration
64
+ run : |
65
+ sudo netstat -tupln
66
+ mage integration || { sudo netstat -tupln; exit 1; }
63
67
64
68
tests-ce-linux-arm64 :
65
69
if : false
@@ -146,10 +150,14 @@ jobs:
146
150
147
151
# This server starts and listen on 8084 port that is used for tests.
148
152
- name : Stop Mono server
149
- run : sudo systemctl kill mono-xsp4 || true
153
+ run : |
154
+ sudo netstat -tupln
155
+ sudo systemctl kill mono-xsp4 || echo "failed to kill mono-xsp4 (exit status $?)"
150
156
151
157
- name : Integration tests
152
- run : mage integration
158
+ run : |
159
+ sudo netstat -tupln
160
+ mage integration || { sudo netstat -tupln; exit 1; }
153
161
154
162
tests-mac-os-ce :
155
163
if : false
You can’t perform that action at this time.
0 commit comments