Skip to content
Snippets Groups Projects
Unverified Commit b5b48a03 authored by slaizet's avatar slaizet Committed by GitHub
Browse files

Merge branch 'master' into compare_reference_tgv_output

parents 547be990 d344b252
No related branches found
No related tags found
No related merge requests found
......@@ -17,14 +17,14 @@ jobs:
id: cache-openmpi
uses: actions/cache@v2
with:
path: openmpi-4.1.2/installed
key: openmpi-4.1.2
path: openmpi-4.1.4/installed
key: openmpi-4.1.4
- name: Build openmpi
if: steps.cache-openmpi.outputs.cache-hit != 'true'
run: |
wget https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-4.1.2.tar.gz
tar -xf openmpi-4.1.2.tar.gz
cd openmpi-4.1.2/ && mkdir installed
wget https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-4.1.4.tar.gz
tar -xf openmpi-4.1.4.tar.gz
cd openmpi-4.1.4/ && mkdir installed
./configure --prefix=$(pwd)/installed
make all install
- name: Record metadata
......@@ -33,13 +33,13 @@ jobs:
echo "Incompact3d HEAD: $(git rev-parse HEAD)" >> metadata.txt
echo "make cmd: make" >> metadata.txt
echo "run cmd: mpirun -np 2 xcompact3d" >> metadata.txt
export PATH=$(pwd)/openmpi-4.1.2/installed/bin/:$PATH
export PATH=$(pwd)/openmpi-4.1.4/installed/bin/:$PATH
echo "mpif90 version: $(mpif90 --version | head -1)" >> metadata.txt
echo "mpirun version: $(mpirun --version | head -1)" >> metadata.txt
mv metadata.txt test/data/Taylor-Green-Vortex/
- name: Build Incompact3d and run TGV reference test case
run: |
export PATH=$(pwd)/openmpi-4.1.2/installed/bin/:$PATH
export PATH=$(pwd)/openmpi-4.1.4/installed/bin/:$PATH
make
cp test/data/Taylor-Green-Vortex/reference_input.i3d input.i3d
mpirun -np 2 xcompact3d
......
Mon Nov 7 10:10:20 UTC 2022
Incompact3d HEAD: 47716a4160aa22377092c1fa22651e77abf85335
Tue Nov 8 13:18:42 UTC 2022
Incompact3d HEAD: 8225eeddf71657822081e8fe726f318f48e66f21
make cmd: make
run cmd: mpirun -np 2 xcompact3d
mpif90 version: GNU Fortran (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0
mpirun version: mpirun (Open MPI) 4.1.2
mpirun version: mpirun (Open MPI) 4.1.4
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment