summaryrefslogtreecommitdiff
path: root/.github/workflows/cygwin.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-08 23:37:04 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-09 00:12:45 +0900
commit963b84a51bf0b80da44ab775d788a911b676a6a9 (patch)
treee36b3f6a45576039972bb1e645c3efe6970a9a29 /.github/workflows/cygwin.yml
parent5e65e65bd935954190a5d481def788524c4ae169 (diff)
Separate steps
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2731
Diffstat (limited to '.github/workflows/cygwin.yml')
-rw-r--r--.github/workflows/cygwin.yml19
1 files changed, 17 insertions, 2 deletions
diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml
index bd61787b92..4dd6c7910d 100644
--- a/.github/workflows/cygwin.yml
+++ b/.github/workflows/cygwin.yml
@@ -53,7 +53,22 @@ jobs:
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