mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-02 09:40:35 +00:00
7bd43f7413
So instead of integrating our own, we only copy our precompiled binaries into the right folder.
15 lines
481 B
YAML
15 lines
481 B
YAML
steps:
|
|
- bash: |
|
|
set -ex
|
|
|
|
curl -L https://github.com/OpenTTD/CompileFarm/releases/download/latest/windows-dependencies.zip > windows-dependencies.zip
|
|
unzip windows-dependencies.zip
|
|
rm -f windows-dependencies.zip
|
|
|
|
mv windows-dependencies/installed /c/vcpkg/
|
|
rm -rf windows-dependencies
|
|
displayName: 'Install dependencies'
|
|
workingDirectory: $(Build.ArtifactStagingDirectory)
|
|
- script: c:\vcpkg\vcpkg.exe integrate install
|
|
displayName: 'Integrate vcpkg'
|