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:
Pentarctagon 2021-03-06 13:26:57 -06:00
parent 44e279cb2f
commit 3da6ce096b
No known key found for this signature in database
GPG key ID: 9456BC54A21DBFA0

View file

@ -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