From 0fb73f8545fe6b4a54e87d8f7126a50d6f414f80 Mon Sep 17 00:00:00 2001 From: Ward Fisher Date: Thu, 20 Jan 2022 16:01:07 -0700 Subject: [PATCH] Move autoconf installation stanza --- .github/workflows/run_tests_osx.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_tests_osx.yml b/.github/workflows/run_tests_osx.yml index 1d751927e..cf7a9c6b9 100644 --- a/.github/workflows/run_tests_osx.yml +++ b/.github/workflows/run_tests_osx.yml @@ -39,7 +39,6 @@ jobs: run: | set -x set -e - brew install autoconf libtool automake wget https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-$(echo ${{ matrix.hdf5 }} | cut -d. -f 1,2)/hdf5-${{ matrix.hdf5 }}/src/hdf5-${{ matrix.hdf5 }}.tar.bz2 tar -jxf hdf5-${{ matrix.hdf5 }}.tar.bz2 pushd hdf5-${{ matrix.hdf5 }} @@ -289,6 +288,10 @@ jobs: # Configure and build ### + - name: Install autoconf + shell: bash -l {0} + run: brew install autoconf automake libtool + - name: Run autoconf shell: bash -l {0} run: autoreconf -if