From e03aeb1f4f66fcf0107b98cd5d4144c056daef32 Mon Sep 17 00:00:00 2001 From: Greg Chadwick Date: Mon, 16 Mar 2020 09:43:55 +0000 Subject: [PATCH] [CI] Add explicit trigger for branches/PRs Azure pipelines has stopped triggering, the issue is being fixed but this works around it for now. --- azure-pipelines.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9a43ae06..da6b38e7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,9 +14,15 @@ variables: trigger: batch: true branches: -# Combine builds on master as long as another build is running include: - - master + - '*' + tags: + include: + - '*' +pr: + branches: + include: + - '*' # Note: All tests run as part of one job to avoid copying intermediate build # artifacts around (e.g. Verilator and toolchain builds). Once more builds/tests