diff options
author | 卜部昌平 <[email protected]> | 2020-03-02 10:59:30 +0900 |
---|---|---|
committer | 卜部昌平 <[email protected]> | 2020-03-02 14:53:05 +0900 |
commit | 0711ceeb376deba69e35c9ecf088b9fb254c54ce (patch) | |
tree | 32436dff0be1c673ebddd6399041138730ac40f6 | |
parent | 2bfa1025a91679a5e1d513255d298126af32099d (diff) |
.github/workflows: name the configure runs
Explicit `name:` entry was requested by @nobu.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/2927
-rw-r--r-- | .github/workflows/macos.yml | 3 | ||||
-rw-r--r-- | .github/workflows/mjit.yml | 2 | ||||
-rw-r--r-- | .github/workflows/ubuntu.yml | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 86d1280da3..f1294afb31 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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 [email protected]) --with-readline-dir=$(brew --prefix readline) + - name: Run configure + run: ../src/configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix [email protected]) --with-readline-dir=$(brew --prefix readline) working-directory: build - run: make $JOBS working-directory: build diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml index eaadeca4ce..331bd1682f 100644 --- a/.github/workflows/mjit.yml +++ b/.github/workflows/mjit.yml @@ -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 diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 2b48ea9648..6c122d16bf 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -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 |