From 8cea419606a8b7cd265afc45a1eb2fab80fb9379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Sat, 7 Sep 2019 13:00:50 +0200 Subject: [PATCH] Pass parameters as strings --- azure-pipelines.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7ddb0a05..4696abcc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -66,20 +66,20 @@ jobs: artifactName: Macos $(Build.BuildNumber) dmg - template: azure-pipelines-windows-template.yml parameters: - name: Windows x64 - arquitecture: x64 - qt_version: 5.12.4 - qt_spec: msvc2017_64 - qt_aqt_spec: win64_msvc2017_64 - vc_redist_url: https://go.microsoft.com/fwlink/?LinkId=746572 - vc_redist_file_name: vc_redist.x64.exe - vc_vars: vcvars64.bat + name: 'Windows x64' + arquitecture: 'x64' + qt_version: '5.12.4' + qt_spec: 'msvc2017_64' + qt_aqt_spec: 'win64_msvc2017_64' + vc_redist_url: 'https://go.microsoft.com/fwlink/?LinkId=746572' + vc_redist_file_name: 'vc_redist.x64.exe' + vc_vars: 'vcvars64.bat' - template: azure-pipelines-windows-template.yml - name: Windows x86 - arquitecture: x86 - qt_version: 5.12.4 - qt_spec: msvc2017 - qt_aqt_spec: win32_msvc2017 - vc_redist_url: https://go.microsoft.com/fwlink/?LinkId=746571 - vc_redist_file_name: vc_redist.x86.exe - vc_vars: vcvars32.bat \ No newline at end of file + name: 'Windows x86' + arquitecture: 'x86' + qt_version: '5.12.4' + qt_spec: 'msvc2017' + qt_aqt_spec: 'win32_msvc2017' + vc_redist_url: 'https://go.microsoft.com/fwlink/?LinkId=746571' + vc_redist_file_name: 'vc_redist.x86.exe' + vc_vars: 'vcvars32.bat' \ No newline at end of file