Skip to content

Commit c2c95ae

Browse files
committed
Add hello
1 parent cd8ad96 commit c2c95ae

File tree

4 files changed

+9
-33
lines changed

4 files changed

+9
-33
lines changed

.github/workflows/macos.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -105,17 +105,7 @@ jobs:
105105

106106
- run: make
107107

108-
- run: |
109-
make golf
110-
case "${{ matrix.configure }}" in
111-
*'--enable-shared'*)
112-
make runnable
113-
./bin/goruby -veh
114-
;;
115-
*)
116-
./goruby -veh
117-
;;
118-
esac
108+
- run: make hello
119109

120110
- name: Set test options for skipped tests
121111
run: |

.github/workflows/modgc.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -135,17 +135,7 @@ jobs:
135135
make modular-gc MODULAR_GC=${{ matrix.gc.name }} MMTK_BUILD=${{ matrix.gc.mmtk_build }}
136136
make distclean-modular-gc MODULAR_GC=${{ matrix.gc.name }}
137137
138-
- run: |
139-
$SETARCH make golf
140-
case "${{ matrix.configure }}" in
141-
*'--enable-shared'*)
142-
$SETARCH make runnable
143-
./bin/goruby -veh
144-
;;
145-
*)
146-
./goruby -veh
147-
;;
148-
esac
138+
- run: $SETARCH make hello
149139

150140
- name: Set test options for skipped tests
151141
run: |

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -96,17 +96,7 @@ jobs:
9696

9797
- run: $SETARCH make
9898

99-
- run: |
100-
$SETARCH make golf
101-
case "${{ matrix.configure }}" in
102-
*'--enable-shared'*)
103-
$SETARCH make runnable
104-
./bin/goruby -veh
105-
;;
106-
*)
107-
./goruby -veh
108-
;;
109-
esac
99+
- run: $SETARCH make hello
110100

111101
- name: Set test options for skipped tests
112102
run: |

common.mk

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,6 +1023,12 @@ runnable: $(RUNNABLE) prog $(tooldir)/mkrunnable.rb PHONY
10231023
$(Q) $(MINIRUBY) $(tooldir)/mkrunnable.rb -v $(EXTOUT)
10241024
yes-runnable: PHONY
10251025

1026+
hello: golf $(DOT_WAIT) $(enable_shared:yes=runnable) $(DOT_WAIT) $(TEST_RUNNABLE)-hello
1027+
yes-hello: golf
1028+
./$(enable_shared:yes=bin/)goruby -veh
1029+
no-hello: golf
1030+
$(ECHO) Run ./$(enable_shared:yes=bin/)goruby -veh
1031+
10261032
encs: enc trans
10271033
libencs: libenc libtrans
10281034
encs enc trans libencs libenc libtrans: $(SHOWFLAGS) $(ENC_MK) $(LIBRUBY) $(PREP) PHONY

0 commit comments

Comments
 (0)