Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 "builds@travis-ci.com"
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
Loading