File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -100,13 +100,15 @@ jobs:
100100 - run : chmod 755 $HOME # https://github.com/actions/virtual-environments/issues/267
101101 - run : mkdir -p ~/.rubies
102102 - run : ./autogen.sh
103- - run : ./configure --prefix=$HOME/.rubies/ruby-${{ matrix.name }} --enable-shared --disable-install-doc
103+ - run : ./configure --prefix=$HOME/.rubies/ruby-${{ matrix.name }} --enable-shared --disable-install-doc --enable-yjit
104104 if : startsWith(matrix.os, 'ubuntu')
105- -
run :
./configure --prefix=$HOME/.rubies/ruby-${{ matrix.name }} --enable-shared --disable-install-doc --with-openssl-dir=$(brew --prefix [email protected] ) --with-readline-dir=$(brew --prefix readline) 105+ -
run :
./configure --prefix=$HOME/.rubies/ruby-${{ matrix.name }} --enable-shared --disable-install-doc --enable-yjit -- with-openssl-dir=$(brew --prefix [email protected] ) --with-readline-dir=$(brew --prefix readline) 106106 if : startsWith(matrix.os, 'macos')
107107 - run : make -j4
108108 - run : make install
109109
110+ - run : ruby --yjit -e 'exit RubyVM::YJIT.enabled?'
111+
110112 - name : Create archive
111113 run : tar czf ruby-${{ matrix.name }}-${{ steps.platform.outputs.platform }}.tar.gz -C ~/.rubies ruby-${{ matrix.name }}
112114
You can’t perform that action at this time.
0 commit comments