From 0a4ab74c8f9f7f72fd0a54ffbc642b01d94445e2 Mon Sep 17 00:00:00 2001 From: Paul Yushkevich Date: Sun, 29 Sep 2024 11:57:33 -0400 Subject: [PATCH] Update build.yml - VTK build fixes --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f534581f..59ed2a07 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,7 +50,7 @@ jobs: id: cache-vtk uses: actions/cache@v4 with: - path: prime-numbers + path: ${{github.workspace}}/vtk/install key: ${{ runner.os }}-vtk-9.3.1 # Check out VTK @@ -69,7 +69,7 @@ jobs: uses: threeal/cmake-action@v2.0.0 with: source-dir: ${{github.workspace}}/vtk - build-dir: ${{github.workspace}}/build + build-dir: ${{github.workspace}}/vtk/build build-args: | -t install @@ -82,7 +82,7 @@ jobs: VTK_GROUP_ENABLE_Qt:STRING=YES VTK_MODULE_ENABLE_VTK_GUISupportQtQuick:STRING=NO VTK_MODULE_ENABLE_VTK_GUISupportQtSQL:STRING=NO - CMAKE_INSTALL_PREFIX=${{github.workspace}}/install + CMAKE_INSTALL_PREFIX=${{github.workspace}}/vtk/install - name: Setup tmate session uses: mxschmitt/action-tmate@v3