mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Separate steps
This commit is contained in:
parent
5e65e65bd9
commit
963b84a51b
Notes:
git
2019-12-09 00:13:20 +09:00
1 changed files with 17 additions and 2 deletions
19
.github/workflows/cygwin.yml
vendored
19
.github/workflows/cygwin.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue