Finding file

This commit is contained in:
Caleb Herpin 2021-07-28 11:58:06 -05:00
parent ae6b94535d
commit d2a4164c2b
2 changed files with 6 additions and 5 deletions

View File

@ -15,10 +15,10 @@ jobs:
matrix: matrix:
cfg: cfg:
#-------- Operating Systems ---------------- #-------- Operating Systems ----------------
# - { os: ubuntu, tag: 18.04, arch: debian } # EOL April 2023 - { os: ubuntu, tag: 18.04, arch: debian } # EOL April 2023
# - { os: ubuntu, tag: 20.04, arch: debian } # EOL April 2025 - { os: ubuntu, tag: 20.04, arch: debian } # EOL April 2025
# - { os: debian, tag: 10, arch: debian } # EOL 2024 - { os: debian, tag: 10, arch: debian } # EOL 2024
# - { os: centos, tag: 7, arch: rhel } # EOL June 2024 - { os: centos, tag: 7, arch: rhel } # EOL June 2024
- { os: centos, tag: latest, arch: rhel } # 8 as of April 2020 - { os: centos, tag: latest, arch: rhel } # 8 as of April 2020
# - { os: fedora, tag: latest, arch: rhel } # 31 as of April 2020 # - { os: fedora, tag: latest, arch: rhel } # 31 as of April 2020
# - { os: fedora, tag: 33, arch: rhel } # feeling confident? # - { os: fedora, tag: 33, arch: rhel } # feeling confident?
@ -166,6 +166,7 @@ jobs:
ls -la $TRICK_HOME ls -la $TRICK_HOME
netstat -tulpan netstat -tulpan
whereis nc whereis nc
ping 8.8.8.8
env: env:
TEST: Hello World! TEST: Hello World!
TRICK_HOME: ${{ github.workspace }} TRICK_HOME: ${{ github.workspace }}

View File

@ -67,7 +67,7 @@ trick.exec_set_freeze_command(True)""")
print("Directory listing:") print("Directory listing:")
os.listdir(".") os.listdir(".")
cmd = f"ls -latrhF `find {params.get_trick_home()}/trick_sims`" cmd = f"find / -name \"S_main*\""
print("....................Running:", cmd) print("....................Running:", cmd)
pause("Before find") pause("Before find")
subprocess.run(cmd, shell=True) subprocess.run(cmd, shell=True)