Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,22 +43,29 @@ 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
cd ./Build/impi_intel_linux_db
./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: |
source /opt/intel/oneapi/setvars.sh
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:
Expand Down
Loading