Skip to content

Commit

Permalink
[GHA] Add debug info to Windows workflow (#22547)
Browse files Browse the repository at this point in the history
We have several occurring errors in Windows and Windows Conditional
Compilation workflow, this info should help us to debug them
  • Loading branch information
ababushk authored Jan 30, 2024
1 parent d321280 commit c2e9591
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,19 @@ jobs:
- name: Clean sccache stats
run: '& "$Env:SCCACHE_PATH" --zero-stats'

# to get more information on the issue
# described in the next step
- name: Show which network ports are used
run: netstat -ban

# the case is the following:
# sccache: error: An attempt was made to access a socket in a way forbidden by its access permissions. (os error 10013)
# This looks like the attempt to use
# a port below 1024 or a port
# which is occupied by another app
- name: Stop sccache server just in case
run: '& "$Env:SCCACHE_PATH" --stop-server'

- name: Cmake build - OpenVINO
run: cmake --build ${{ env.BUILD_DIR }} --parallel --config ${{ env.CMAKE_BUILD_TYPE }} --verbose

Expand Down

0 comments on commit c2e9591

Please sign in to comment.