Added netstat command

This commit is contained in:
Caleb Herpin 2021-07-28 10:11:00 -05:00
parent f86b73828d
commit 2af4fac9b2

View File

@ -61,6 +61,7 @@ jobs:
libgtest-dev libgtest-dev
python3 python3
python3-venv python3-venv
net-tools
install_gtest: cd /usr/src/gtest && cmake . && make && cp libgtest* /usr/lib/ install_gtest: cd /usr/src/gtest && cmake . && make && cp libgtest* /usr/lib/
#-------- RHEL Dependencies ---------------- #-------- RHEL Dependencies ----------------
- cfg: { arch: rhel } - cfg: { arch: rhel }
@ -83,6 +84,7 @@ jobs:
zlib-devel zlib-devel
gtest-devel gtest-devel
python3-devel python3-devel
net-tools
#-------- Ubuntu Only Dependencies ---------------- #-------- Ubuntu Only Dependencies ----------------
- cfg: { os: ubuntu } - cfg: { os: ubuntu }
os_deps: >- os_deps: >-
@ -160,6 +162,7 @@ jobs:
echo workspace is $TRICK_HOME echo workspace is $TRICK_HOME
echo files in workspace: echo files in workspace:
ls -la $TRICK_HOME ls -la $TRICK_HOME
netstat -tulpan
env: env:
TEST: Hello World! TEST: Hello World!
TRICK_HOME: ${{ github.workspace }} TRICK_HOME: ${{ github.workspace }}