summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-14 15:13:49 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-14 15:13:49 +0000
commit17b606d8b356d732dbc0fb38c9ab05a5a28d3939 (patch)
treecb74940eee0076277ab3e9957a00b32bfe827aad /azure-pipelines.yml
parent816c5323fe82a7a4502f35ab8252ed56a6251688 (diff)
Fix broken variable propagation on Azure
It looks like the old definition was not working as intended... https://dev.azure.com/rubylang/ruby/_build/results?buildId=394 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67557 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index a2a56af824..a9ff595e07 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -7,7 +7,6 @@ jobs:
matrix:
bundled_gems:
task: test-bundled-gems
- TEST_BUNDLED_GEMS_ALLOW_FAILURES: minitest
bundler:
task: test-bundler
steps:
@@ -28,7 +27,7 @@ jobs:
make
displayName: 'make'
- script: |
- TRAVIS=1 make $(task)
+ make $(task) TRAVIS=1 TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
displayName: "test"
continueOnError: true # test-bundler is failing on Linux. TODO: fix it and remove this line.
@@ -43,7 +42,6 @@ jobs:
# task: test-spec
bundled_gems:
task: test-bundled-gems
- TEST_BUNDLED_GEMS_ALLOW_FAILURES: minitest
bundler:
task: test-bundler
steps:
@@ -57,7 +55,7 @@ jobs:
make
displayName: 'make'
- script: |
- make $(task)
+ make $(task) TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
displayName: "test"
# - job: vs2015