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

ruby-changes:73664

From: Takashi <ko1@a...>
Date: Wed, 21 Sep 2022 22:03:03 +0900 (JST)
Subject: [ruby-changes:73664] 1a2ee4cfab (master): Try reordering test-all and test-spec for mswin CI

https://git.ruby-lang.org/ruby.git/commit/?id=1a2ee4cfab

From 1a2ee4cfabba31d367da854f2e834d4f47cbc4b1 Mon Sep 17 00:00:00 2001
From: Takashi Kokubun <takashikkbn@g...>
Date: Wed, 21 Sep 2022 22:01:16 +0900
Subject: Try reordering test-all and test-spec for mswin CI

Visual Studio 2019 GitHub Actions has been super unstable. Somehow nmake
test-spec triggers rebuilding the interpreter and fails.

usa suggested a possibility of test-all leaving something impacting
test-spec. I'd like to try this patch and see what happens.
---
 .github/workflows/windows.yml | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 4418c78d81..ab9e35d5a3 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -128,14 +128,12 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/windows.yml#L128
           YACC: win_bison
       - run: nmake test
         timeout-minutes: 5
+      - run: nmake test-spec
+        timeout-minutes: 10
       - run: nmake test-all
         env:
           RUBY_TESTOPTS: -j${{env.TEST_JOBS}} --job-status=normal
         timeout-minutes: 60
-        continue-on-error: ${{ matrix.continue-on-error || false }}
-      - run: nmake test-spec
-        timeout-minutes: 10
-        continue-on-error: ${{ matrix.continue-on-error || false }}
       - uses: k0kubun/action-slack@v...
         with:
           payload: |
-- 
cgit v1.2.1


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

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