summaryrefslogtreecommitdiff
path: root/azure-pipelines/templates/windows-dependencies.yml
blob: 72368b9d7142f7cc0d1980f7bc7ef0767a8d2f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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'