mirror of
https://github.com/Dark98/threeSD.git
synced 2026-07-03 00:38:58 +00:00
412aeaa0d4
Moved MSVC to Github Actions as well.
11 lines
325 B
Bash
Executable File
11 lines
325 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
BUILDCACHE_VERSION="0.22.3"
|
|
|
|
choco install wget ninja
|
|
# Install buildcache
|
|
wget "https://github.com/mbitsnbites/buildcache/releases/download/v${BUILDCACHE_VERSION}/buildcache-win-mingw.zip"
|
|
7z x 'buildcache-win-mingw.zip'
|
|
mv ./buildcache/bin/buildcache.exe "/c/ProgramData/chocolatey/bin"
|
|
rm -rf ./buildcache/
|