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