@@ -40,20 +40,26 @@ jobs:
4040 with :
4141 tarantool-version : ' ${{ matrix.tarantool-version }}'
4242
43- - name : Static code check
44- uses : ./.github/actions/static-code-check
43+ # - name: Static code check
44+ # uses: ./.github/actions/static-code-check
4545
46- - name : Unit tests
47- run : mage unitfull
46+ # - name: Unit tests
47+ # run: mage unitfull
4848
4949 # This server starts and listen on 8084 port that is used for tests.
5050 - 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 $?)"
5255
5356 - name : Integration tests
5457 env :
5558 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; }
5763
5864 full-ci-ce-linux-arm64 :
5965 if : false
@@ -132,20 +138,26 @@ jobs:
132138 sdk-version : ' ${{ matrix.sdk-version }}'
133139 sdk-download-token : ' ${{ secrets.SDK_DOWNLOAD_TOKEN }}'
134140
135- - name : Static code check
136- uses : ./.github/actions/static-code-check
141+ # - name: Static code check
142+ # uses: ./.github/actions/static-code-check
137143
138- - name : Unit tests
139- run : mage unitfull
144+ # - name: Unit tests
145+ # run: mage unitfull
140146
141147 # This server starts and listen on 8084 port that is used for tests.
142148 - 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 $?)"
144153
145154 - name : Integration tests
146155 env :
147156 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; }
149161
150162 full-ci-macOS :
151163 if : false
0 commit comments