Skip to content

Commit 629d5aa

Browse files
committed
[CI] Update debug build configuration.
1 parent 5773856 commit 629d5aa

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/c-cpp.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,20 @@ on:
99
jobs:
1010
debug_builds:
1111
runs-on: ubuntu-latest
12+
env:
13+
FCFLAGS: -O0 -g
14+
CXXFLAGS: -O0 -g
15+
NVCCFLAGS: -O0 -g -G
1216
strategy:
1317
matrix:
1418
folder: [ epochX/cudacpp/ee_mumu.sa/SubProcesses/P1_Sigma_sm_epem_mupmum , epochX/cudacpp/pp_tt012j.mad/SubProcesses/P0_gg_ttx , epochX/cudacpp/pp_tt012j.mad/SubProcesses/P2_uux_ttxgg ]
1519
fail-fast: false
1620
steps:
1721
- uses: actions/checkout@v2
1822
- name: make debug
19-
run: make -C ${{ matrix.folder }} debug
23+
run: make -C ${{ matrix.folder }}
24+
- name: make check
25+
run: make -C ${{ matrix.folder }} check
2026
CPU:
2127
runs-on: ubuntu-latest
2228
strategy:

0 commit comments

Comments
 (0)