summaryrefslogtreecommitdiff
path: root/azure-pipelines/templates/windows-dependencies.yml
blob: c6fc6e407c73bc03337bb6ba5d9525c002961ab8 (plain)
1
2
3
4
5
6
7
8
9
10
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
  displayName: 'Download dependencies'
  workingDirectory: $(Build.ArtifactStagingDirectory)
- script: $(Build.ArtifactStagingDirectory)\windows-dependencies\vcpkg.exe integrate install
  displayName: 'Install dependencies'