We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbfa3a4 commit 4879e4aCopy full SHA for 4879e4a
2 files changed
.github/workflows/ubuntu-cuda.yml
@@ -15,7 +15,7 @@ jobs:
15
matrix:
16
include:
17
# Ubuntu 24.04 + gcc-12 + CUDA 12.6.3
18
- - name: "Ubuntu 24.04 + gcc-12 + CUDA 12.6.3 (Disable Test)"
+ - name: "Ubuntu 24.04 + gcc-12 + CUDA 12.6.3"
19
os: ubuntu-24.04
20
cuda: "12.6.3"
21
compiler: gcc
@@ -57,3 +57,5 @@ jobs:
57
run: mkdir build && cd build && cmake -DUSE_CUDA=ON -DCMAKE_BUILD_TYPE=Release ..
58
- name: Build
59
run: cd build && make
60
+ - name: Run CUDA Unit Test
61
+ run: /home/runner/work/CubbyFlow/CubbyFlow/build/bin/CUDATests
.github/workflows/windows-cuda.yml
@@ -82,3 +82,6 @@ jobs:
82
83
shell: powershell
84
run: MSBuild.exe "build\\${{ matrix.solution }}" /p:Configuration=Release
85
86
+ shell: powershell
87
+ run: /a/CubbyFlow/CubbyFlow/build/bin/Release/CUDATests.exe
0 commit comments