Skip to content

Commit 5886ea6

Browse files
committed
Workaround for R-Devel macos issues
1 parent fbeb535 commit 5886ea6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/main.yml

+7
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@ jobs:
4949
- uses: r-lib/actions/setup-r@v2
5050
with:
5151
r-version: ${{ matrix.config.r }}
52+
53+
# MacOS r-devel currently needs gettext
54+
# https://stat.ethz.ch/pipermail/r-sig-mac/2025-March/015126.html
55+
- name: Install gettext on MacOS r-devel
56+
if: runner.os == 'macOS' && matrix.config.r == 'devel'
57+
run: |
58+
brew install gettext
5259
5360
- uses: r-lib/actions/setup-pandoc@v2
5461

0 commit comments

Comments
 (0)