ruby-changes:69626
From: Nobuyoshi <ko1@a...>
Date: Sun, 7 Nov 2021 22:37:19 +0900 (JST)
Subject: [ruby-changes:69626] 30583bc947 (master): [MSWin] Split nmake step
https://git.ruby-lang.org/ruby.git/commit/?id=30583bc947 From 30583bc947858746e4f8fc21b366bffa8bab4ac7 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Sun, 7 Nov 2021 01:34:51 +0900 Subject: [MSWin] Split nmake step The workflow output grouping seems effective even in the middle of lines. --- .github/workflows/windows.yml | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 919911b89e1..d71ddd1b8c7 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -90,30 +90,20 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/windows.yml#L90 - name: Configure run: | ../src/win32/configure.bat --disable-install-doc --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows --with-openssl-dir="C:/Program Files/OpenSSL-Win64" - - name: nmake - run: | - echo ^#^#[group]incs - nmake incs - echo ^#^#[endgroup] - echo ^#^#[group]extract-extlibs - nmake extract-extlibs - echo ^#^#[endgroup] - nmake + - run: nmake incs + - run: nmake extract-extlibs + - run: nmake env: YACC: win_bison - - name: nmake test + - run: nmake test timeout-minutes: 5 - run: | - nmake test - name: nmake test-all timeout-minutes: 60 run: | nmake test-all TESTOPTS="-j%NUMBER_OF_PROCESSORS% --job-status=normal" continue-on-error: ${{ matrix.continue-on-error || false }} - - name: nmake test-spec + - run: nmake test-spec timeout-minutes: 10 - run: | - nmake test-spec continue-on-error: ${{ matrix.continue-on-error || false }} - uses: k0kubun/action-slack@v... with: -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/