diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-09-10 10:31:57 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-09-10 11:43:01 +0200 |
commit | d54d6edc0cdd9f76e6bfdc8e5cfd4850ec5fc1a9 (patch) | |
tree | b1cee5d88994bcfa1be00877bd22d5fcab013f45 | |
parent | c59b33c85e58e78bf2c796dfe19c91e8f9427936 (diff) | |
download | sciteco-d54d6edc0cdd9f76e6bfdc8e5cfd4850ec5fc1a9.tar.gz |
fixed Mac OS nightly builds by installing an up-to-date Groff
The Mac OS 12 Groff apparently does not accept `-K` for preconv.
-rw-r--r-- | .github/workflows/nightly.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index f4d8caa..1bd9321 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -85,8 +85,9 @@ jobs: # the system libncurses ABI breaks. # However, Homebrew installs ncurses as a keg and it will refer to a # non-standard $TERMINFO. This could be worked around. + # The macOS Groff version appears to be outdated. - name: Install Build Dependencies - run: brew install autoconf automake libtool glib dylibbundler + run: brew install autoconf automake libtool glib groff dylibbundler # Required by pyTooling/Actions/releaser - name: Set up Python uses: actions/setup-python@v4.3.0 |