From: Daniel Arndt Date: Tue, 20 Feb 2024 20:28:13 +0000 (-0500) Subject: GitHub CI: Also compile matrix_free_kokkos tests in CUDA CI X-Git-Tag: relicensing~10^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fb0c55e5ae6184f4c2a1ac419bc1f2876fbd408;p=dealii.git GitHub CI: Also compile matrix_free_kokkos tests in CUDA CI --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 80aed60632..c984c63103 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -382,9 +382,11 @@ jobs: - name: build CUDA tests run: | cd build - make -j2 setup_tests_cuda + make -j2 setup_tests_cuda setup_tests_matrix_free_kokkos cd tests/cuda make -j2 compile_test_executables + cd ../matrix_free_kokkos + make -j2 compile_test_executables ############################# # linux-debug-cuda-11-clang # @@ -477,6 +479,8 @@ jobs: - name: build CUDA tests run: | cd build - make -j 2 setup_tests_cuda + make -j2 setup_tests_cuda setup_tests_matrix_free_kokkos cd tests/cuda make -j2 compile_test_executables + cd ../matrix_free_kokkos + make -j2 compile_test_executables