We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11dbb80 commit 1c4a6c1Copy full SHA for 1c4a6c1
.github/workflows/build.yml
@@ -40,11 +40,10 @@ jobs:
40
run: |
41
git config --global user.email "builds@travis-ci.com"
42
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
+ 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
48
- name: Upload artifacts
49
if: ${{ success() }}
50
uses: actions/upload-artifact@v3
0 commit comments