From 2b4c2a7f5560bfef6b331f72a26e3e7482c29cde Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 6 Nov 2019 10:45:17 -0800 Subject: [PATCH] Match our Travis logic in Azure. (#7514) In Travis, the full test suite doesn't run on PRs for point release branches, just on commits for them. I think this behavior makes sense because what we actually want to test before a point release is the exact commit we want to release after any squashing/merging has been done. This PR modifies Azure to match this behavior. After this PR lands, I need to update the tests required to pass on GitHub. --- .azure-pipelines/advanced.yml | 1 - .azure-pipelines/main.yml | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipelines/advanced.yml b/.azure-pipelines/advanced.yml index fe24a9ecb..44cdf5d54 100644 --- a/.azure-pipelines/advanced.yml +++ b/.azure-pipelines/advanced.yml @@ -4,7 +4,6 @@ trigger: - '*.x' pr: - test-* - - '*.x' # This pipeline is also nightly run on master schedules: - cron: "0 4 * * *" diff --git a/.azure-pipelines/main.yml b/.azure-pipelines/main.yml index be9eaf0b0..d9609037e 100644 --- a/.azure-pipelines/main.yml +++ b/.azure-pipelines/main.yml @@ -6,6 +6,7 @@ trigger: pr: - apache-parser-v2 - master + - '*.x' jobs: - template: templates/tests-suite.yml