From 7e651ca70ba3c9df2c89da71e54a8fd5c9124309 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cezary=20Skrzy=C5=84ski?= Date: Wed, 28 Dec 2022 23:05:34 +0100 Subject: [PATCH] Group similar options together --- .github/workflows/continuous-integration-workflow.yml | 2 +- .github/workflows/performance-benchmark.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 6049953e55..7f88532209 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -93,7 +93,6 @@ jobs: run: | cmake -B builddir \ -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ ${{ matrix.clang-tidy }} \ -Ddesul_ROOT=/usr/desul-install/ \ -DKokkos_ARCH_NATIVE=ON \ @@ -106,6 +105,7 @@ jobs: -DKokkos_ENABLE_DEPRECATED_CODE_4=ON \ -DKokkos_ENABLE_DEPRECATION_WARNINGS=OFF \ -DCMAKE_CXX_COMPILER=${{ matrix.cxx }} \ + -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ -DCMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} - name: Build run: | diff --git a/.github/workflows/performance-benchmark.yml b/.github/workflows/performance-benchmark.yml index d65891ab64..6d7a0faa6b 100644 --- a/.github/workflows/performance-benchmark.yml +++ b/.github/workflows/performance-benchmark.yml @@ -29,12 +29,12 @@ jobs: - name: Configure Kokkos run: | cmake -B builddir \ - -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ -DKokkos_ARCH_NATIVE=ON \ -DKokkos_ENABLE_HWLOC=ON \ -DKokkos_ENABLE_${{ matrix.backend }}=ON \ -DKokkos_ENABLE_BENCHMARKS=ON \ -DCMAKE_CXX_COMPILER=${{ matrix.cxx }} \ + -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ -DCMAKE_BUILD_TYPE=Release - name: Build run: |