From 411d0195379a096048f65436f418778128de79f1 Mon Sep 17 00:00:00 2001 From: Jonathan Cardoso Machado Date: Sun, 8 Dec 2024 23:47:41 -0300 Subject: [PATCH] fix(ci): use autoconf from brew on the macos build on gh actions --- .github/workflows/build-and-release.yaml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/build-and-release.yaml b/.github/workflows/build-and-release.yaml index 889a2967..1b8d7ffb 100644 --- a/.github/workflows/build-and-release.yaml +++ b/.github/workflows/build-and-release.yaml @@ -94,19 +94,7 @@ jobs: if: matrix.node-libcurl-cpp-std - if: runner.os == 'macOS' name: Install Needed packages on macOS - run: brew install coreutils wget automake libtool cmake gnu-sed m4 - # not using brew for that one as we need 2.69 - - if: runner.os == 'macOS' - name: Install autoconf on macOS - run: | - curl -O -L http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz - tar -xzf autoconf-2.69.tar.gz - cd autoconf-* - ./configure - make - make install - autoconf --version - ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize + run: brew install coreutils wget automake libtool cmake gnu-sed m4 autoconf - name: Output yarn cache dir id: yarn-cache-dir run: echo "::set-output name=dir::$(yarn cache dir)"