From 3c3d45d49768b5626905c2ead9b0cd1e40ea4efe Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Mon, 20 Feb 2023 22:14:47 -0500 Subject: [PATCH] ci: set cmake preset in informing workflow (#2237) --- .github/workflows/inform-pages-repo.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/inform-pages-repo.yaml b/.github/workflows/inform-pages-repo.yaml index 4f75ad6226..d9bfedc37f 100644 --- a/.github/workflows/inform-pages-repo.yaml +++ b/.github/workflows/inform-pages-repo.yaml @@ -6,6 +6,7 @@ on: - master paths: - 'goal_src/**' + workflow_dispatch: {} jobs: gen-docs: @@ -33,7 +34,7 @@ jobs: - name: Setup Buildcache uses: mikehardy/buildcache-action@v2.1.0 with: - cache_key: linux-ubuntu-20.04-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }} + cache_key: linux-ubuntu-20.04--Release-linux-clang buildcache_tag: v0.28.1 - name: CMake Generation @@ -41,7 +42,7 @@ jobs: CC: clang CXX: clang++ run: | - cmake -B build --preset=${{ inputs.cmakePreset }} \ + cmake -B build --preset=Release-linux-clang \ -DCMAKE_C_COMPILER_LAUNCHER=${{ github.workspace }}/buildcache/bin/buildcache \ -DCMAKE_CXX_COMPILER_LAUNCHER=${{ github.workspace }}/buildcache/bin/buildcache