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

ruby-changes:53048

From: k0kubun <ko1@a...>
Date: Sun, 21 Oct 2018 11:18:44 +0900 (JST)
Subject: [ruby-changes:53048] k0kubun:r65262 (trunk): appveyor.yml: workaround wrong command line escape

k0kubun	2018-10-21 11:18:39 +0900 (Sun, 21 Oct 2018)

  New Revision: 65262

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

  Log:
    appveyor.yml: workaround wrong command line escape
    
    backslash in %APPVEYOR_BUILD_FOLDER% is somehow dropped somewhere
    when being passed to test runner via mingw32-make.
    
    Anyway we know the relative path to the project directory, so we can
    specify that with slash.

  Modified files:
    trunk/appveyor.yml
Index: appveyor.yml
===================================================================
--- appveyor.yml	(revision 65261)
+++ appveyor.yml	(revision 65262)
@@ -137,5 +137,5 @@ for: https://github.com/ruby/ruby/blob/trunk/appveyor.yml#L137
     - mingw32-make test
     - mingw32-make test-all TESTOPTS="--retry --job-status=normal --show-skip --subprocess-timeout-scale=1.5 -j %JOBS% --exclude win32ole"
     # separately execute tests that may crash worker without -j.
-    - mingw32-make test-all TESTOPTS="--retry --job-status=normal --show-skip --subprocess-timeout-scale=1.5" TESTS="%APPVEYOR_BUILD_FOLDER%/test/win32ole"
+    - mingw32-make test-all TESTOPTS="--retry --job-status=normal --show-skip --subprocess-timeout-scale=1.5" TESTS="../ruby/test/win32ole"
     - mingw32-make test-spec MSPECOPT=-j

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

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