Skip to content

Commit 81b8891

Browse files
committed
Update cis.
1 parent e631d97 commit 81b8891

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,22 @@ jobs:
1010

1111
env:
1212
FC: gfortran
13-
GCC_V: 11
13+
GCC_V: 13
1414

1515
steps:
1616
- name: Checkout code
1717
uses: actions/checkout@v3
1818

1919
- name: Install Dependencies
2020
run: |
21-
sudo apt install -y gfortran-${GCC_V} cmake mpich
21+
sudo apt install -y gfortran-${GCC_V} cmake
2222
sudo update-alternatives --install /usr/bin/gfortran gfortran /usr/bin/gfortran-${GCC_V} 100
2323
24+
- name: Setup MPI
25+
uses: mpi4py/setup-mpi@v1
26+
with:
27+
mpi: impi
28+
2429
- name: Build and Test
2530
run: |
2631
mkdir build

.github/workflows/win-ci.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,23 @@ jobs:
4242
ls "${I_MPI_ROOT}/bin"
4343
ls "${I_MPI_ROOT}"
4444
ls "${I_MPI_ROOT}/lib"
45-
mpifc.bat -show
46-
mpicc.bat -show
45+
ls "${I_MPI_ROOT}/env"
46+
# cat "${I_MPI_ROOT}/bin/mpifc.bat"
47+
# mpifc.bat -show
48+
# mpicc.bat -show
4749
mpifc.bat -version || echo "ifort not installed"
4850
mpicc.bat -version || echo "icc not installed"
4951
set +o verbose
52+
# echo The following environment variables are used:
53+
# echo CMPLR_ROOT Intel^(R^) Compiler installation directory path
54+
# echo I_MPI_ROOT Intel^(R^) MPI Library installation directory path
55+
# echo I_MPI_{FC,F77,F90} or MPICH_{FC,F77,F90}
56+
# echo the path/name of the underlying compiler to be used.
57+
# echo I_MPI_{FC,F77,F90}_PROFILE or MPI{FC,F77,F90}_PROFILE
58+
# echo name of profile file ^(without extension^)
59+
# echo I_MPI_COMPILER_CONFIG_DIR
60+
# echo folder which contains configuration files *.conf
61+
# echo VT_ROOT Intel^(R^) Trace Collector installation directory path
5062
5163
- name: Build and Test
5264
run: |

0 commit comments

Comments
 (0)