Codechange: [AzurePipelines] Speed up non-published CI-builds by doing Debug Windows builds.

pull/104/head
Michael Lutz 5 years ago
parent 83c1678f9e
commit 2e7a27d2ee

@ -25,6 +25,7 @@ jobs:
- template: azure-pipelines/templates/windows-build.yml
parameters:
BuildPlatform: $(BuildPlatform)
BuildConfiguration: Debug
- script: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
cd projects

@ -88,6 +88,7 @@ jobs:
- template: windows-build.yml
parameters:
BuildPlatform: $(BuildPlatform)
BuildConfiguration: Release
- bash: |
set -ex
make -f Makefile.msvc bundle_pdb bundle_zip PLATFORM=$(BundlePlatform) BUNDLE_NAME=openttd-$(Build.BuildNumber)-windows-$(BundlePlatform)

@ -7,5 +7,5 @@ steps:
inputs:
solution: 'projects/openttd_vs141.sln'
platform: ${{ parameters.BuildPlatform }}
configuration: Release
configuration: ${{ parameters.BuildConfiguration }}
maximumCpuCount: true

Loading…
Cancel
Save