Skip to content

Commit e6482fe

Browse files
committed
Fix action
1 parent 916ce3b commit e6482fe

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/actions/initialize-dspm/action.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ runs:
1919
uses: actions/cache/restore@v4
2020
with:
2121
path: ${{inputs.build-dir}}/dist
22-
key: ${{ runner.os }}-dspm-${{ inputs.ref }}-${{ github.sha }}
23-
restore-keys: |
24-
${{ runner.os }}-dspm-${{ inputs.ref }}-
22+
key: ${{ runner.os }}-dspm-${{ inputs.ref }}
2523

2624
- name: Checkout
2725
if: steps.cache_dspm.outputs.cache-hit != 'true'
@@ -55,9 +53,10 @@ runs:
5553
5654
- name: Cache dspm executable
5755
uses: actions/cache/save@v4
56+
if: steps.cache_dspm.outputs.cache-hit != 'true'
5857
with:
5958
path: ${{inputs.build-dir}}/dist
60-
key: ${{ runner.os }}-dspm-${{ inputs.ref }}-${{ github.sha }}
59+
key: ${{ runner.os }}-dspm-${{ inputs.ref }}
6160

6261
- name: Output dspm path
6362
working-directory: ${{ inputs.build-dir }}

scripts/ci/Build.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ cmake -S . -B $(Resolve-Path $BuildDir) -G Ninja `
101101
"-DAPPLICATION_NAME=$applicationName" `
102102
"-DAPPLICATION_DISPLAY_NAME=$applicationDisplayName" `
103103
"-DAPPLICATION_SEMVER=$semver" `
104+
-DTALCS_DSPX:BOOL=ON `
105+
-DTALCS_WIDGETS:BOOL=ON `
104106
"-DDIFFSCOPE_PACKAGE_MANAGER_COMMAND_LINE_TOOL=$dspmExecutablePath" `
105107
"-DCMAKE_INSTALL_PREFIX=$(Resolve-Path $InstallDir)" | Write-Host
106108
if ($LASTEXITCODE -ne 0) {

0 commit comments

Comments
 (0)