Disable Windows github actions caching.
It already didn't work anyway, but now it seems to be actively causing problems by randomly failing due to lack of disk space. Though how it can only sometimes run out of disk space despite trying to cache the same thing every time, and when the runner instance is supposed to always have the same amount of disk space available, is anyone's guess.
This commit is contained in:
parent
44e279cb2f
commit
3da6ce096b
1 changed files with 14 additions and 14 deletions
28
.github/workflows/ci-main.yml
vendored
28
.github/workflows/ci-main.yml
vendored
|
@ -321,13 +321,13 @@ jobs:
|
|||
with:
|
||||
submodules: "recursive"
|
||||
|
||||
- name: Cache object files
|
||||
uses: actions/cache@v2
|
||||
env:
|
||||
cache-name: windows-release-cache-master
|
||||
with:
|
||||
path: D:/a/wesnoth/vcpkg
|
||||
key: windows-master-N003
|
||||
# - name: Cache object files
|
||||
# uses: actions/cache@v2
|
||||
# env:
|
||||
# cache-name: windows-release-cache-master
|
||||
# with:
|
||||
# path: D:/a/wesnoth/vcpkg
|
||||
# key: windows-master-N003
|
||||
|
||||
- name: Add msbuild to PATH
|
||||
uses: microsoft/setup-msbuild@v1.0.2
|
||||
|
@ -354,13 +354,13 @@ jobs:
|
|||
with:
|
||||
submodules: "recursive"
|
||||
|
||||
- name: Cache object files
|
||||
uses: actions/cache@v2
|
||||
env:
|
||||
cache-name: windows-debug-cache-master
|
||||
with:
|
||||
path: D:/a/wesnoth/vcpkg
|
||||
key: windows-master-N003
|
||||
# - name: Cache object files
|
||||
# uses: actions/cache@v2
|
||||
# env:
|
||||
# cache-name: windows-debug-cache-master
|
||||
# with:
|
||||
# path: D:/a/wesnoth/vcpkg
|
||||
# key: windows-master-N003
|
||||
|
||||
- name: Add msbuild to PATH
|
||||
uses: microsoft/setup-msbuild@v1.0.2
|
||||
|
|
Loading…
Add table
Reference in a new issue