Skip to content

Commit

Permalink
fix build cache in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pit-ray committed Jun 14, 2023
1 parent 669ad31 commit 06863b8
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Cache libraries
uses: actions/cache@v2
with:
path: ${{github.workspace}}/libs
path: ${{github.workspace}}/libs/wxWidgets
key: libs-cache-release-220224

- name: Setup x64 MSVC
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ jobs:
- name: Cache Library
uses: actions/cache@v2
with:
path: ${{github.workspace}}/libs
key: x64-libs-cache-codeql-220126
path: ${{github.workspace}}/libs/wxWidgets
key: x64-libs-cache-codeql

- name: Setup Library
run: "tools/install_wxWidgets.bat -msvc 64"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:
- name: Cache libraries
uses: actions/cache@v2
with:
path: ${{github.workspace}}/libs
key: x64-libs-cache-coverity-220126
path: ${{github.workspace}}/libs/wxWidgets
key: x64-libs-cache-coverity

- name: Install libraries
run: "tools/install_wxWidgets.bat -msvc 64"
Expand All @@ -63,7 +63,7 @@ jobs:
uses: actions/cache@v2
with:
path: ${{github.workspace}}/cov_tools
key: x64-coverity-cache-221023
key: x64-coverity-cache

- name: Install Coverity scan tools
run: "tools/install_coverity_tools.bat ${{env.TOKEN}}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ jobs:
- name: Cache Libraries
uses: actions/cache@v2
with:
path: ${{github.workspace}}/libs
key: x64-libs-cache-mingw-220120
path: ${{github.workspace}}/libs/wxWidgets
key: x64-libs-cache-mingw

- name: Install Libraries
run: "tools/install_wxWidgets.bat -mingw 64"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
- name: Cache Libraries
uses: actions/cache@v2
with:
path: ${{github.workspace}}/libs
key: x64-libs-cache-msvc-220126
path: ${{github.workspace}}/libs/wxWidgets
key: x64-libs-cache-msvc

- name: Setup Libraries
run: "tools/install_wxWidgets.bat -msvc 64 -without-vcvars"
Expand All @@ -67,8 +67,8 @@ jobs:
- name: Cache Library
uses: actions/cache@v2
with:
path: ${{github.workspace}}/libs
key: x86-libs-cache-msvc-220126
path: ${{github.workspace}}/libs/wxWidgets
key: x86-libs-cache-msvc

- name: Setup Libraries
run: "tools/install_wxWidgets.bat -msvc 32 -without-vcvars"
Expand Down

0 comments on commit 06863b8

Please sign in to comment.