diff --git a/.github/actions/install-repo/action.yml b/.github/actions/install-repo/action.yml index 001f07a..5eead61 100644 --- a/.github/actions/install-repo/action.yml +++ b/.github/actions/install-repo/action.yml @@ -27,16 +27,16 @@ runs: ref: ${{inputs.repo-ref}} path: ${{inputs.repo-name}} - # - name: ${{inputs.repo-name}} Configure CMake - # if: ${{ steps.build-${{inputs.repo-name}}.outputs.cache-hit != 'true' }} - # run: cmake -S $GITHUB_WORKSPACE/${{inputs.repo-name}} -B ${{ runner.temp }}/build-${{inputs.repo-name}} - # -DCMAKE_INSTALL_PREFIX=${{ runner.temp }}/build-${{inputs.repo-name}}/install - # -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} - # -DKokkos_ENABLE_SERIAL=ON - # -DKokkos_ENABLE_OPENMP=off - # -DKokkos_ENABLE_CUDA=off - # -DKokkos_ENABLE_CUDA_LAMBDA=off - # -DKokkos_ENABLE_DEBUG=on + - name: ${{inputs.repo-name}} Configure CMake + if: ${{ steps.build-[inputs.repo-name].outputs.cache-hit != 'true' }} + run: cmake -S $GITHUB_WORKSPACE/${{inputs.repo-name}} -B ${{ runner.temp }}/build-${{inputs.repo-name}} + -DCMAKE_INSTALL_PREFIX=${{ runner.temp }}/build-${{inputs.repo-name}}/install + -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} + -DKokkos_ENABLE_SERIAL=ON + -DKokkos_ENABLE_OPENMP=off + -DKokkos_ENABLE_CUDA=off + -DKokkos_ENABLE_CUDA_LAMBDA=off + -DKokkos_ENABLE_DEBUG=on # - name: ${{inputs.repo-name}} Build # if: ${{ steps.build-${{inputs.repo-name}}.outputs.cache-hit != 'true' }}