This is an automated email from the ASF dual-hosted git repository.
rmetzger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 209a975 Revert "[hotfix] Disable e2e execution in PRs"
209a975 is described below
commit 209a975ff4852a08dbc4ed6228dec1223cb0eff0
Author: Robert Metzger <[email protected]>
AuthorDate: Wed May 20 06:54:59 2020 +0200
Revert "[hotfix] Disable e2e execution in PRs"
This reverts commit 11644c57a48d3589afb56edbbe7ae98df7394f80.
---
tools/azure-pipelines/jobs-template.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tools/azure-pipelines/jobs-template.yml
b/tools/azure-pipelines/jobs-template.yml
index 5e629c7..0efb1a2 100644
--- a/tools/azure-pipelines/jobs-template.yml
+++ b/tools/azure-pipelines/jobs-template.yml
@@ -148,7 +148,8 @@ jobs:
artifact: logs-${{parameters.stage_name}}-$(ARTIFACT_NAME)
- job: e2e_${{parameters.stage_name}}
- condition: or(eq(variables['MODE'], 'e2e'),
eq(${{parameters.run_end_to_end}}, 'true'),
not(startsWith(variables['Build.SourceBranchName'], 'ci_')))
+ # uncomment below condition to run the e2e tests only on request.
+ #condition: or(eq(variables['MODE'], 'e2e'),
eq(${{parameters.run_end_to_end}}, 'true'))
# We are running this in a separate pool
pool: ${{parameters.e2e_pool_definition}}
timeoutInMinutes: 240