Set Azure pipelines to manual build only

This commit is contained in:
Jamie Newbon
2020-10-13 14:33:38 +01:00
parent 95c6cbe01e
commit d9cbf7f339

View File

@ -7,6 +7,9 @@ jobs:
pool:
vmImage: 'ubuntu-16.04'
#As apparently the trigger set to none doesn't work
condition: eq(variables['Build.Reason'], 'Manual')
strategy:
matrix:
ubuntu1604:
@ -90,6 +93,9 @@ jobs:
pool:
vmImage: $[ variables['image'] ]
#As apparently the trigger set to none doesn't work
condition: eq(variables['Build.Reason'], 'Manual')
variables:
QT_PATH: '/usr/local/opt/qt/bin'
@ -112,6 +118,9 @@ jobs:
pool:
vmImage: $[ variables['image'] ]
#As apparently the trigger set to none doesn't work
condition: eq(variables['Build.Reason'], 'Manual')
variables:
QT_VERSION: '5.12.6'
QLI_OUT_DIR: '.\deps\Qt'