From 1e3a32e483290e72e6dae05e461f422f81380ef3 Mon Sep 17 00:00:00 2001 From: Chandan Paul Date: Mon, 25 Nov 2024 21:54:15 -0500 Subject: [PATCH] FDS Build: Remove sh to allow bash shell to github linux actions --- .github/workflows/linux.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 4d9635a32c8..9dc760c04ac 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -43,13 +43,15 @@ jobs: run: | source /opt/intel/oneapi/setvars.sh cd ./Build/impi_intel_linux_db - bash ./make_fds.sh + bash + ./make_fds.sh ./fds_impi_intel_linux_db - name: build fds release run: | source /opt/intel/oneapi/setvars.sh cd ./Build/impi_intel_linux - bash ./make_fds.sh + bash + ./make_fds.sh ./fds_impi_intel_linux # Setup python - uses: actions/setup-python@v5 @@ -88,11 +90,13 @@ jobs: run: | source /opt/intel/oneapi/setvars.sh cd ./Build/ompi_gnu_linux_db - bash ./make_fds.sh + bash + ./make_fds.sh ./fds_ompi_gnu_linux_db - name: build fds release run: | source /opt/intel/oneapi/setvars.sh cd ./Build/ompi_gnu_linux - bash ./make_fds.sh + bash + ./make_fds.sh ./fds_ompi_gnu_linux