Skip to content

Commit

Permalink
CI: Install texinfo on macOS.
Browse files Browse the repository at this point in the history
Binutils 2.41 requires a version newer than what is provided by macOS.
  • Loading branch information
FtZPetruska committed Jul 31, 2023
1 parent 11dbb80 commit 1c4a6c1
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,10 @@ jobs:
run: |
git config --global user.email "[email protected]"
git config --global user.name "Travis CI"
brew install autoconf automake libtool
mkdir build
cd build
cmake ..
make -j$(nproc) tarball
brew install autoconf automake libtool texinfo
export PATH="$(brew --prefix texinfo)/bin:$PATH"
cmake -S . -B build -G "Unix Makefiles"
cmake --build build --target tarball
- name: Upload artifacts
if: ${{ success() }}
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 1c4a6c1

Please sign in to comment.