mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
.github/workflows: name the configure runs
Explicit `name:` entry was requested by @nobu.
This commit is contained in:
parent
2bfa1025a9
commit
0711ceeb37
Notes:
git
2020-03-02 14:53:30 +09:00
3 changed files with 5 additions and 3 deletions
3
.github/workflows/macos.yml
vendored
3
.github/workflows/macos.yml
vendored
|
@ -38,7 +38,8 @@ jobs:
|
|||
- run: autoconf
|
||||
working-directory: src
|
||||
- run: mkdir build
|
||||
- run: ../src/configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline)
|
||||
- name: Run configure
|
||||
run: ../src/configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline)
|
||||
working-directory: build
|
||||
- run: make $JOBS
|
||||
working-directory: build
|
||||
|
|
2
.github/workflows/mjit.yml
vendored
2
.github/workflows/mjit.yml
vendored
|
@ -41,7 +41,7 @@ jobs:
|
|||
- run: autoconf
|
||||
working-directory: src
|
||||
- run: mkdir build
|
||||
- name: configure
|
||||
- name: Run configure
|
||||
run: ../src/configure -C --disable-install-doc
|
||||
working-directory: build
|
||||
- run: make $JOBS
|
||||
|
|
3
.github/workflows/ubuntu.yml
vendored
3
.github/workflows/ubuntu.yml
vendored
|
@ -47,7 +47,8 @@ jobs:
|
|||
- run: autoconf
|
||||
working-directory: src
|
||||
- run: mkdir build
|
||||
- run: ../src/configure -C --disable-install-doc
|
||||
- name: Run confiugre
|
||||
run: ../src/configure -C --disable-install-doc
|
||||
working-directory: build
|
||||
- run: make $JOBS
|
||||
working-directory: build
|
||||
|
|
Loading…
Reference in a new issue