From a180ae2ef16b8ae5cb85cf2f78d3a4a17993fe26 Mon Sep 17 00:00:00 2001 From: Chandan Paul Date: Fri, 20 Dec 2024 15:48:58 -0500 Subject: [PATCH] FDS Build: Add the free -h options to Linux actions FDS Build: Add free -h options to Linux actions FDS Build: Add free -h options to Linux actions FDS Build: Add free -h options to Linux actions --- .github/workflows/linux.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 8b74e8348d..570a0c5fdf 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -43,6 +43,9 @@ jobs: - name: Check Current Memory Limit run: ulimit -a # Check the memory limits + - name: free -h command + run: free -h + - name: build fds debug run: | source /opt/intel/oneapi/setvars.sh @@ -50,8 +53,8 @@ jobs: ./make_fds.sh ./fds_impi_intel_linux_db - - name: Check Current Memory Limit - run: ulimit -a # Check the memory limits + - name: free -h command + run: free -h - name: build fds release run: | @@ -59,6 +62,10 @@ jobs: cd ./Build/impi_intel_linux ./make_fds.sh ./fds_impi_intel_linux + + - name: free -h command + run: free -h + # Setup python - uses: actions/setup-python@v5 with: