From d2a4164c2b045225029ce9779c8a39e6c62f0f14 Mon Sep 17 00:00:00 2001 From: Caleb Herpin Date: Wed, 28 Jul 2021 11:58:06 -0500 Subject: [PATCH] Finding file --- .github/workflows/test_linux.yml | 9 +++++---- share/trick/pymods/trick/conftest.py | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_linux.yml b/.github/workflows/test_linux.yml index d3874586..36e2482c 100644 --- a/.github/workflows/test_linux.yml +++ b/.github/workflows/test_linux.yml @@ -15,10 +15,10 @@ jobs: matrix: cfg: #-------- Operating Systems ---------------- - # - { os: ubuntu, tag: 18.04, arch: debian } # EOL April 2023 - # - { os: ubuntu, tag: 20.04, arch: debian } # EOL April 2025 - # - { os: debian, tag: 10, arch: debian } # EOL 2024 - # - { os: centos, tag: 7, arch: rhel } # EOL June 2024 + - { os: ubuntu, tag: 18.04, arch: debian } # EOL April 2023 + - { os: ubuntu, tag: 20.04, arch: debian } # EOL April 2025 + - { os: debian, tag: 10, arch: debian } # EOL 2024 + - { os: centos, tag: 7, arch: rhel } # EOL June 2024 - { 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: 33, arch: rhel } # feeling confident? @@ -166,6 +166,7 @@ jobs: ls -la $TRICK_HOME netstat -tulpan whereis nc + ping 8.8.8.8 env: TEST: Hello World! TRICK_HOME: ${{ github.workspace }} diff --git a/share/trick/pymods/trick/conftest.py b/share/trick/pymods/trick/conftest.py index 140d2bd9..f4554b7a 100644 --- a/share/trick/pymods/trick/conftest.py +++ b/share/trick/pymods/trick/conftest.py @@ -67,7 +67,7 @@ trick.exec_set_freeze_command(True)""") print("Directory listing:") os.listdir(".") - cmd = f"ls -latrhF `find {params.get_trick_home()}/trick_sims`" + cmd = f"find / -name \"S_main*\"" print("....................Running:", cmd) pause("Before find") subprocess.run(cmd, shell=True)