@@ -40,20 +40,26 @@ jobs:
40
40
with :
41
41
tarantool-version : ' ${{ matrix.tarantool-version }}'
42
42
43
- - name : Static code check
44
- uses : ./.github/actions/static-code-check
43
+ # - name: Static code check
44
+ # uses: ./.github/actions/static-code-check
45
45
46
- - name : Unit tests
47
- run : mage unitfull
46
+ # - name: Unit tests
47
+ # run: mage unitfull
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
+ mage integrationfull || { sudo netstat -tupln; exit 1; }
57
63
58
64
full-ci-ce-linux-arm64 :
59
65
if : false
@@ -132,20 +138,26 @@ jobs:
132
138
sdk-version : ' ${{ matrix.sdk-version }}'
133
139
sdk-download-token : ' ${{ secrets.SDK_DOWNLOAD_TOKEN }}'
134
140
135
- - name : Static code check
136
- uses : ./.github/actions/static-code-check
141
+ # - name: Static code check
142
+ # uses: ./.github/actions/static-code-check
137
143
138
- - name : Unit tests
139
- run : mage unitfull
144
+ # - name: Unit tests
145
+ # run: mage unitfull
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
0 commit comments