Use --enable-cuda flag in workflows

This commit is contained in:
Alejandro Gallo 2022-09-13 14:51:49 +02:00
parent 5c41fb65e4
commit 8abc516b1f

View File

@ -55,7 +55,11 @@ jobs:
run: |
mkdir -p build/${{matrix.compiler}}
cd build/${{matrix.compiler}}
if [[ ${{matrix.cuda}} == true ]]; then
$WITH_SHELL '../../configure --enable-cuda'
else
$WITH_SHELL '../../configure'
fi
- name: CTF (${{matrix.compiler}})
run: |