File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed
Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change 77 runs-on : windows-latest
88 strategy :
99 fail-fast : true
10+ matrix :
11+ mpi : [ 'intelmpi', 'msmpi' ]
12+ name : Check with ${{ matrix.mpi }}
1013 defaults :
1114 run :
1215 shell : msys2 {0}
1720
1821 steps :
1922 - name : Checkout code
20- uses : actions/checkout@v3
23+ uses : actions/checkout@v4
2124
2225 - name : Install Dependencies
2326 uses : msys2/setup-msys2@v2
@@ -31,18 +34,19 @@ jobs:
3134 id : setup-mpi
3235 uses : mpi4py/setup-mpi@v1
3336 with :
34- mpi : intelmpi
37+ mpi : ${{ matrix.mpi }}
3538
3639 - name : MPI info
3740 run : |
3841 echo "${{ steps.setup-mpi.outputs.mpi }}"
3942 set -o verbose
4043 # mpiexec -help
4144 type mpiexec
42- ls "${I_MPI_ROOT}/bin"
43- ls "${I_MPI_ROOT}"
44- ls "${I_MPI_ROOT}/lib"
45- ls "${I_MPI_ROOT}/env"
45+ export MPI_ROOT=${I_MPI_ROOT:-${MPI_ROOT}}
46+ ls "${MPI_ROOT}/bin"
47+ ls "${MPI_ROOT}"
48+ ls "${MPI_ROOT}/lib"
49+ ls "${MPI_ROOT}/env"
4650 # cat "${I_MPI_ROOT}/bin/mpifc.bat"
4751 # mpifc.bat -show
4852 # mpicc.bat -show
You can’t perform that action at this time.
0 commit comments