Skip to content

Commit 5cab830

Browse files
tstennercboulay
authored andcommitted
CI: print network configuration on github actions
1 parent be03010 commit 5cab830

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ build_script:
1919
- cd build
2020
- sh: sudo dpkg -i *.deb
2121
- sh: cpack -G DEB
22+
- sh: ifconfig
2223
- cmd: testing\Release\lsl_test_internal.exe --wait-for-keypress never
2324
- cmd: set PATH=Release;%PATH% && testing\Release\lsl_test_exported.exe --wait-for-keypress never
2425
- sh: testing/lsl_test_internal --wait-for-keypress never

.github/workflows/cppcmake.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,16 @@ jobs:
6161
with:
6262
name: pkg-${{ matrix.os }}
6363
path: build/package
64+
- name: print network config
65+
shell: bash
66+
run: |
67+
which ifconfig && ifconfig
68+
if [ which ip ]; then
69+
ip link
70+
ip addr
71+
ip route
72+
ip -6 route
73+
fi
6474
- name: unit tests (internal functions)
6575
run: build/install/bin/lsl_test_internal --order rand --wait-for-keypress never --durations yes
6676
timeout-minutes: 5

0 commit comments

Comments
 (0)