ruby-changes:59117
From: Nobuyoshi <ko1@a...>
Date: Mon, 9 Dec 2019 01:31:14 +0900 (JST)
Subject: [ruby-changes:59117] 963b84a51b (master): Separate steps
https://git.ruby-lang.org/ruby.git/commit/?id=963b84a51b From 963b84a51bf0b80da44ab775d788a911b676a6a9 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Sun, 8 Dec 2019 23:37:04 +0900 Subject: Separate steps diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index bd61787..4dd6c79 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -53,7 +53,22 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/cygwin.yml#L53 run: | bash.exe -c "./src/tool/actions-commit-info.sh" shell: cmd - - name: Autoconf && configure & make & make btest + - name: Autoconf run: | - bash.exe -c "cd src && autoconf && ./configure && make && make btest" + cd src + bash.exe -c autoconf + shell: cmd + - name: Configure + run: | + md build + cd build + bash -c ../src/configure + shell: cmd + - name: make + run: | + make -C build + shell: cmd + - name: make btest + run: | + make -C build btest shell: cmd -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/