# HG changeset patch # User Markus Mützel # Date 1629378559 -7200 # Node ID 2362fbd42c174e8571609f7404f31a7c7b38f248 # Parent 18d98ccee2b00a409f913703bceb0a070de47057 GitHub-CI: Add macOS 11 runner. * .github/workflows/make.yaml (macos): Add macOS 11 runner. Use makeinfo from Homebrew. diff -r 18d98ccee2b0 -r 2362fbd42c17 .github/workflows/make.yaml --- a/.github/workflows/make.yaml Thu Aug 19 00:45:09 2021 -0400 +++ b/.github/workflows/make.yaml Thu Aug 19 15:09:19 2021 +0200 @@ -137,7 +137,7 @@ strategy: matrix: # For available GitHub-hosted runners, see: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners - os: [macos-10.15] + os: [macos-10.15, macos-11] # Most (or all) homebrew packages are compiled with clang and link # against libc++. So we also use clang to avoid issues with symbols # that don't match. @@ -268,7 +268,9 @@ # automatically. continue-on-error: true timeout-minutes: 60 - run: make -C ./.build check + run: | + echo 'makeinfo_program ("/usr/local/opt/texinfo/bin/makeinfo");' >> ./scripts/startup/site-rcfile + make -C ./.build check - name: display test log continue-on-error: true