From cfc409cdad14d9a45627b7c21c5e8d286c02719f Mon Sep 17 00:00:00 2001 From: Nathan Ellingwood Date: Tue, 7 May 2024 12:49:28 -0600 Subject: [PATCH] docs.yml: change kokkos version to latest release - avoid version range check issues for release tests --- .github/workflows/docs.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 1646300e81..b2bf72d2ef 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -33,7 +33,7 @@ jobs: uses: actions/checkout@v4 with: repository: kokkos/kokkos - ref: develop + ref: 4.3.00 path: kokkos - name: configure_kokkos @@ -45,7 +45,6 @@ jobs: -DCMAKE_CXX_STANDARD=17 \ -DCMAKE_INSTALL_PREFIX=$PWD/../install \ -DKokkos_ENABLE_COMPILER_WARNINGS=ON \ - -DKokkos_ENABLE_DEPRECATED_CODE_3=OFF \ -DKokkos_ENABLE_TESTS=OFF \ -DKokkos_ENABLE_DEPRECATED_CODE_4=OFF \ ..