[前][次][番号順一覧][スレッド一覧]

ruby-changes:55349

From: k0kubun <ko1@a...>
Date: Mon, 15 Apr 2019 00:13:54 +0900 (JST)
Subject: [ruby-changes:55349] k0kubun:r67557 (trunk): Fix broken variable propagation on Azure

k0kubun	2019-04-15 00:13:49 +0900 (Mon, 15 Apr 2019)

  New Revision: 67557

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67557

  Log:
    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

  Modified files:
    trunk/azure-pipelines.yml
Index: azure-pipelines.yml
===================================================================
--- azure-pipelines.yml	(revision 67556)
+++ azure-pipelines.yml	(revision 67557)
@@ -7,7 +7,6 @@ jobs: https://github.com/ruby/ruby/blob/trunk/azure-pipelines.yml#L7
     matrix:
       bundled_gems:
         task: test-bundled-gems
-        TEST_BUNDLED_GEMS_ALLOW_FAILURES: minitest
       bundler:
         task: test-bundler
   steps:
@@ -28,7 +27,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/azure-pipelines.yml#L27
       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: https://github.com/ruby/ruby/blob/trunk/azure-pipelines.yml#L42
 #        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: https://github.com/ruby/ruby/blob/trunk/azure-pipelines.yml#L55
       make
     displayName: 'make'
   - script: |
-      make $(task)
+      make $(task) TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
     displayName: "test"
 
 # - job: vs2015

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]