We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71412cf commit 08ac94dCopy full SHA for 08ac94d
.github/workflows/c-cpp.yml
@@ -9,14 +9,20 @@ on:
9
jobs:
10
debug_builds:
11
runs-on: ubuntu-latest
12
+ env:
13
+ FCFLAGS: -O0 -g
14
+ CXXFLAGS: -O0 -g
15
+ NVCCFLAGS: -O0 -g -G
16
strategy:
17
matrix:
18
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 ]
19
fail-fast: false
20
steps:
21
- uses: actions/checkout@v2
22
- name: make debug
- run: make -C ${{ matrix.folder }} debug
23
+ run: make -C ${{ matrix.folder }}
24
+ - name: make check
25
+ run: make -C ${{ matrix.folder }} check
26
CPU:
27
28
0 commit comments