Skip to content

Commit

Permalink
add --verbose to ci runners
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfonba committed Feb 13, 2024
1 parent 443f572 commit 717d76a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Test
run: |
if [ '${{ matrix.intel }}' == 'true' ]; then source /opt/intel/oneapi/setvars.sh; fi
/bin/bash mfc.sh test -j $(nproc) -r $OPT1 $OPT2
/bin/bash mfc.sh test -j $(nproc) -r -v $OPT1 $OPT2
env:
OPT1: ${{ matrix.mpi == 'mpi' && '--test-all' || '' }}
OPT2: ${{ matrix.debug == 'debug' && '-% 20' || '' }}
Expand All @@ -98,7 +98,7 @@ jobs:
uses: actions/checkout@v3

- name: Test
run: sudo ./mfc.sh docker ./mfc.sh test -j $(nproc) -a -r
run: sudo ./mfc.sh docker ./mfc.sh test -j $(nproc) -a -r -v

self:
name: Georgia Tech | Phoenix (NVHPC)
Expand Down
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ if (MFC_ALL)
set(MFC_DOCUMENTATION ON FORCE)
endif()

# Overwrite CMAKE's optimization levels if specified
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

# CMake Library Imports

Expand Down

0 comments on commit 717d76a

Please sign in to comment.