1
0
Fork 0
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:
卜部昌平 2020-03-02 10:59:30 +09:00
parent 2bfa1025a9
commit 0711ceeb37
Notes: git 2020-03-02 14:53:30 +09:00
3 changed files with 5 additions and 3 deletions

View file

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

View file

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

View file

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