We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac574e9 commit fcecfc6Copy full SHA for fcecfc6
.github/workflows/build.yml
@@ -838,9 +838,11 @@ jobs:
838
path: ${{ env.CCACHE_DIR }}
839
key: vendor-ccache-${{ matrix.os.id }}-vcpkg
840
841
+ # The brew install command sometimes fails on the first try but succeeds on the second :-/
842
- name: "setup: misc"
843
run: |
- brew install -q autoconf automake ccache libtool openssl pandoc pkg-config
844
+ PACKAGES=(autoconf automake ccache libtool openssl pandoc pkg-config)
845
+ brew install -q $PACKAGES || brew install -q $PACKAGES
846
mkdir -p ${{ env.CCACHE_DIR }}
847
echo "$(brew --prefix)/opt/ccache/libexec" >> $GITHUB_PATH
848
0 commit comments