From b8759127270690d79fac25b4ef0672fc5779f29d Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Sat, 14 Mar 2020 19:30:01 +0000 Subject: [PATCH 1/4] CI: Update pipelines config to trigger on PRs (#32706) --- azure-pipelines.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d992c64073476..c73646e915ea6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,4 +1,10 @@ # Adapted from https://github.com/numba/numba/blob/master/azure-pipelines.yml +trigger: +- master + +pr: +- master + jobs: # Mac and Linux use the same template - template: ci/azure/posix.yml From d14e45121bb2356c02eb8e09fe6f4c27ea62c05b Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Mon, 15 Jun 2020 12:57:54 +0100 Subject: [PATCH 2/4] add 1.0.x --- azure-pipelines.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c73646e915ea6..84c65b429b6cb 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,9 +1,11 @@ # Adapted from https://github.com/numba/numba/blob/master/azure-pipelines.yml trigger: - master +- 1.0.x pr: - master +- 1.0.x jobs: # Mac and Linux use the same template From 9e8ce6a7202f0f5c1a92593f44e1c556e9e37f5f Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Mon, 15 Jun 2020 14:45:28 +0100 Subject: [PATCH 3/4] use full syntax for pr --- azure-pipelines.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 84c65b429b6cb..ed82c10db8de2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,8 +4,10 @@ trigger: - 1.0.x pr: -- master -- 1.0.x + branches: + include: + - master/* + - 1.0.x/* jobs: # Mac and Linux use the same template From 914a185109fc7c539a466b8f3102d4d990e50073 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Mon, 15 Jun 2020 14:51:40 +0100 Subject: [PATCH 4/4] remove wildcard --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ed82c10db8de2..b5a35648ea35b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,8 +6,8 @@ trigger: pr: branches: include: - - master/* - - 1.0.x/* + - master + - 1.0.x jobs: # Mac and Linux use the same template