fix home ref

develop
Myk Taylor 2023-07-30 20:52:07 -07:00
parent 872720740a
commit 2bb972ff77
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

@ -71,7 +71,7 @@ jobs:
env:
CC: gcc-${{ inputs.gcc-ver }}
CXX: g++-${{ inputs.gcc-ver }}
CCACHE_DIR: ${{ env.HOME }}/.ccache
CCACHE_DIR: ${{ github.env.HOME }}/.ccache
run: |
cmake \
-S . \

@ -36,14 +36,14 @@ jobs:
if: inputs.platform-files
uses: actions/cache@v3
with:
path: ${{ env.HOME }}/clcache
path: ${{ github.env.HOME }}/clcache
key: win-msvc-${{ inputs.cache-id }}-${{ github.sha }}
restore-keys: |
win-msvc-${{ inputs.cache-id }}
win-msvc
- name: Configure DFHack
env:
CLCACHE_DIR: ${{ env.HOME }}/clcache
CLCACHE_DIR: ${{ github.env.HOME }}/clcache
run: cmake -S . -B build -G "Visual Studio 17 2022" -DCMAKE_INSTALL_PREFIX=build/image ${{ inputs.platform-files && '-DCMAKE_C_COMPILER_LAUNCHER=clcache' || '' }} ${{ inputs.platform-files && '-DCMAKE_CXX_COMPILER_LAUNCHER=clcache' || '' }} -DBUILD_LIBRARY:BOOL=${{ inputs.platform-files }} -DBUILD_PLUGINS:BOOL=${{ inputs.platform-files }} -DBUILD_STONESENSE:BOOL=${{ inputs.platform-files }} -DBUILD_DOCS:BOOL=${{ inputs.common-files }} -DINSTALL_DATA_FILES:BOOL=${{ inputs.common-files }} -DINSTALL_SCRIPTS:BOOL=${{ inputs.common-files }}
- name: Build DFHack
run: cmake --build build -j 2 --config Release --target install