Skip to content

Commit 1c4a6c1

Browse files
committed
CI: Install texinfo on macOS.
Binutils 2.41 requires a version newer than what is provided by macOS.
1 parent 11dbb80 commit 1c4a6c1

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,10 @@ jobs:
4040
run: |
4141
git config --global user.email "builds@travis-ci.com"
4242
git config --global user.name "Travis CI"
43-
brew install autoconf automake libtool
44-
mkdir build
45-
cd build
46-
cmake ..
47-
make -j$(nproc) tarball
43+
brew install autoconf automake libtool texinfo
44+
export PATH="$(brew --prefix texinfo)/bin:$PATH"
45+
cmake -S . -B build -G "Unix Makefiles"
46+
cmake --build build --target tarball
4847
- name: Upload artifacts
4948
if: ${{ success() }}
5049
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)