summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-05-06 16:04:24 +0000
committerBundlerbot <bot@bundler.io>2019-05-06 16:04:24 +0000
commitb1c7297ccfd59879d4181d72b171f3ea88ac5fbd (patch)
tree7e499be672614cd08c1b34bcca3924035670055d
parent56f15eb061d15ad17c7a0d5ab75d9b9cee61a5a4 (diff)
parent387afc3cc822595f895bfbfde2c6883e2609b29a (diff)
downloadbundler-b1c7297ccfd59879d4181d72b171f3ea88ac5fbd.tar.gz
Merge #7157
7157: Improve azure configuration r=deivid-rodriguez a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was that failures in Azure are not logged, so it hard to improve the situation. ### What is your fix for the problem, implemented in this PR? My fix is to configure Azure to run until completion without any timeouts, and remove intercepting the global timeout (which we did to make sure build is still green when it times out), because it's no longer necessary. Now we should be able to see the failures on every PR. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
-rw-r--r--.azure-pipelines/steps.yml2
-rw-r--r--azure-pipelines.yml1
2 files changed, 2 insertions, 1 deletions
diff --git a/.azure-pipelines/steps.yml b/.azure-pipelines/steps.yml
index b37a79f328..bb989ac70c 100644
--- a/.azure-pipelines/steps.yml
+++ b/.azure-pipelines/steps.yml
@@ -28,7 +28,7 @@ steps:
displayName: 'gem install rspec_junit_formatter'
- script: |
- timeout 50m bash -c 'ruby -r rspec_junit_formatter bin/rspec --format progress --format RspecJunitFormatter -o rspec/bundler-junit-results.xml' || exit 0
+ ruby -r rspec_junit_formatter bin/rspec --format progress --format RspecJunitFormatter -o rspec/bundler-junit-results.xml || exit 0
displayName: 'ruby bin/rspec'
- task: PublishTestResults@2
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 3aa8f82d3d..d8bb61e6f3 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -4,3 +4,4 @@ jobs:
vmImage: 'vs2017-win2016'
steps:
- template: .azure-pipelines/steps.yml
+ timeoutInMinutes: 0