diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 040202d894..695e313e4c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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'