Skip to content

Commit 8aaf993

Browse files
committed
update github actions workflow
1 parent 98ae383 commit 8aaf993

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/actions/init-build/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,12 @@ runs:
6161
uses: actions/cache/restore@v4
6262
with:
6363
path: ${{ github.workspace }}/vcpkg
64-
key: ${{ runner.os }}-vcpkg-${{ hashFiles('**/vcpkg.json') }}
64+
key: ${{ runner.os }}-vcpkg-${{ hashFiles('scripts/vcpkg-manifest/vcpkg.json', 'scripts/vcpkg/**') }}
6565
restore-keys: |
6666
${{ runner.os }}-vcpkg-
6767
6868
- name: Install vcpkg dependencies
69+
if: steps.cache_vcpkg.outputs.cache-hit != 'true'
6970
shell: pwsh
7071
run: |
7172
if (!(Test-Path vcpkg)) {
@@ -97,6 +98,7 @@ runs:
9798
}
9899
99100
- name: Save vcpkg to cache
101+
if: steps.cache_vcpkg.outputs.cache-hit != 'true'
100102
uses: actions/cache/save@v4
101103
with:
102104
path: ${{ github.workspace }}/vcpkg

.github/workflows/generate-bundles-and-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
-DCK_WIN_APPLOCAL_DEPS:BOOL=TRUE `
6464
-DTALCS_DEVICE_ENABLE_ASIO:BOOL=ON `
6565
-DTALCS_ASIOSDK_DIR=${{ env.ASIOSDK_DIR }} `
66+
-DTALCS_REMOTE:BOOL=ON `
6667
-DTALCS_DSPX:BOOL=ON `
6768
-DCMAKE_INSTALL_PREFIX=installed
6869
cmake --build build --target all

0 commit comments

Comments
 (0)