From 754af9537950df008325ffbe9e22deddadada3ca Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 18 Nov 2021 15:18:37 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c1dbab..ad760ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -451,9 +451,12 @@ jobs: steps: - uses: actions/checkout@v2 - uses: Jimver/cuda-toolkit@v0.2.4 - - run: | nvcc -x cu -I ./include -c test/mp11.cpp + nvcc -x cu -I ./include -c test/mp_all.cpp + nvcc -x cu -I ./include -c test/mp_any.cpp + nvcc -x cu -I ./include -c test/mp_count.cpp + nvcc -x cu -I ./include -c test/mp_count_if.cpp cuda-windows: @@ -462,6 +465,10 @@ jobs: steps: - uses: actions/checkout@v2 - uses: Jimver/cuda-toolkit@v0.2.4 - + - uses: ilammy/msvc-dev-cmd@v1 - run: | nvcc -x cu -I ./include -c test/mp11.cpp + nvcc -x cu -I ./include -c test/mp_all.cpp + nvcc -x cu -I ./include -c test/mp_any.cpp + nvcc -x cu -I ./include -c test/mp_count.cpp + nvcc -x cu -I ./include -c test/mp_count_if.cpp