diff options
author | 卜部昌平 <[email protected]> | 2020-03-02 10:59:30 +0900 |
---|---|---|
committer | 卜部昌平 <[email protected]> | 2020-03-02 14:53:05 +0900 |
commit | 0711ceeb376deba69e35c9ecf088b9fb254c54ce () | |
tree | 32436dff0be1c673ebddd6399041138730ac40f6 | |
parent | 2bfa1025a91679a5e1d513255d298126af32099d (diff) |
./workflows: name the configure runs
Explicit `name:` entry was requested by @nobu.
Notes: Merged: https://.com/ruby/ruby/pull/2927
-rw-r--r-- | ./workflows/macos.yml | 3 | ||||
-rw-r--r-- | ./workflows/mjit.yml | 2 | ||||
-rw-r--r-- | ./workflows/ubuntu.yml | 3 |
3 files changed, 5 insertions, 3 deletions
@@ -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) working-directory: build - run: make $JOBS working-directory: build @@ -41,7 +41,7 @@ jobs: - run: autoconf working-directory: src - run: mkdir build - - name: configure run: ../src/configure -C --disable-install-doc working-directory: build - run: make $JOBS @@ -47,7 +47,8 @@ jobs: - run: autoconf working-directory: src - run: mkdir build - - run: ../src/configure -C --disable-install-doc working-directory: build - run: make $JOBS working-directory: build |