Skip to content

Commit 41160a2

Browse files
committed
Try using autogen.sh as recommended in the ruby/ruby README
* The build fails on macOS in GitHub Actions currently: Run autoconf configure.ac:4182: warning: AC_C_BIGENDIAN should be used with AC_CONFIG_HEADERS Run ./configure --prefix=$HOME/.rubies/ruby-head --enable-shared --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline) configure: error: cannot find required auxiliary files: config.guess config.sub Error: Process completed with exit code 1.
1 parent 72b39b3 commit 41160a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
# Build
9494
- run: chmod 755 $HOME # https://github.com/actions/virtual-environments/issues/267
9595
- run: mkdir -p ~/.rubies
96-
- run: autoconf
96+
- run: ./autogen.sh
9797
- run: ./configure --prefix=$HOME/.rubies/ruby-${{ matrix.name }} --enable-shared --disable-install-doc
9898
if: startsWith(matrix.os, 'ubuntu')
9999
- run: ./configure --prefix=$HOME/.rubies/ruby-${{ matrix.name }} --enable-shared --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline)

0 commit comments

Comments
 (0)