1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Separate steps

This commit is contained in:
Nobuyoshi Nakada 2019-12-08 23:37:04 +09:00
parent 5e65e65bd9
commit 963b84a51b
Notes: git 2019-12-09 00:13:20 +09:00

View file

@ -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