From 6fb0c55e5ae6184f4c2a1ac419bc1f2876fbd408 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Tue, 20 Feb 2024 15:28:13 -0500 Subject: [PATCH] GitHub CI: Also compile matrix_free_kokkos tests in CUDA CI --- .github/workflows/linux.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 -- 2.39.5