From d9cbf7f3392a328a3e0ffca4eff09c72eda76bce Mon Sep 17 00:00:00 2001 From: Jamie Newbon Date: Tue, 13 Oct 2020 14:33:38 +0100 Subject: [PATCH] Set Azure pipelines to manual build only --- azure-pipelines.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 040202d89..695e313e4 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'