Skip to content

Commit

Permalink
update github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
CrSjimo committed Oct 1, 2024
1 parent 98ae383 commit 8aaf993
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/init-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,12 @@ runs:
uses: actions/cache/restore@v4
with:
path: ${{ github.workspace }}/vcpkg
key: ${{ runner.os }}-vcpkg-${{ hashFiles('**/vcpkg.json') }}
key: ${{ runner.os }}-vcpkg-${{ hashFiles('scripts/vcpkg-manifest/vcpkg.json', 'scripts/vcpkg/**') }}
restore-keys: |
${{ runner.os }}-vcpkg-
- name: Install vcpkg dependencies
if: steps.cache_vcpkg.outputs.cache-hit != 'true'
shell: pwsh
run: |
if (!(Test-Path vcpkg)) {
Expand Down Expand Up @@ -97,6 +98,7 @@ runs:
}
- name: Save vcpkg to cache
if: steps.cache_vcpkg.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: ${{ github.workspace }}/vcpkg
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/generate-bundles-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
-DCK_WIN_APPLOCAL_DEPS:BOOL=TRUE `
-DTALCS_DEVICE_ENABLE_ASIO:BOOL=ON `
-DTALCS_ASIOSDK_DIR=${{ env.ASIOSDK_DIR }} `
-DTALCS_REMOTE:BOOL=ON `
-DTALCS_DSPX:BOOL=ON `
-DCMAKE_INSTALL_PREFIX=installed
cmake --build build --target all
Expand Down

0 comments on commit 8aaf993

Please sign in to comment.