Skip to content

Commit 87b3497

Browse files
author
Anand
committed
ci
1 parent 5871c9b commit 87b3497

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,20 +74,24 @@ jobs:
7474
echo "MPI_HOME=/opt/intel/oneapi/mpi/2021.7.1/" >> $GITHUB_ENV
7575
echo "I_MPI_ROOT=/opt/intel/oneapi/mpi/2021.7.1/" >> $GITHUB_ENV
7676
77-
- name: Build
77+
- name: Build-intel
7878
if: matrix.intel == true
7979
run: |
8080
source /opt/intel/oneapi/setvars.sh
8181
/bin/bash mfc.sh build -j $(nproc) --${{ matrix.debug }} --${{ matrix.mpi }}
82-
if: matrix.intel == false
82+
83+
- name: Build
84+
if: matrix.intel == false
8385
run: |
84-
/bin/bash mfc.sh build -j $(nproc) --${{ matrix.debug }} --${{ matrix.mpi }}
86+
/bin/bash mfc.sh build -j $(nproc) --${{ matrix.debug }} --${{ matrix.mpi }}
8587
86-
- name: Test
88+
- name: Test-intel
8789
if: matrix.intel == true
8890
run: |
8991
source /opt/intel/oneapi/setvars.sh
9092
/bin/bash mfc.sh test -j $(nproc) $(if [ "${{ matrix.mpi }}" == "mpi" ]; then echo "--test-all"; fi)
93+
94+
- name: Test-intel
9195
if: matrix.intel == false
9296
run: |
9397
/bin/bash mfc.sh test -j $(nproc) $(if [ "${{ matrix.mpi }}" == "mpi" ]; then echo "--test-all"; fi)

0 commit comments

Comments
 (0)