We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 626f274 commit 1341050Copy full SHA for 1341050
1 file changed
.github/workflows/R-CMD-check-occasional.yaml
@@ -70,6 +70,10 @@ jobs:
70
with:
71
r-version: ${{ matrix.r }}
72
73
+ - name: Set script permissions
74
+ run: chmod +x configure cleanup 2>/dev/null || true # Silence some GHA Annotations
75
+ shell: bash
76
+
77
- name: Install check dependencies (Ubuntu)
78
if: matrix.os == 'ubuntu-latest'
79
run: |
@@ -85,8 +89,9 @@ jobs:
85
89
- name: Install check dependencies (macOS)
86
90
if: matrix.os == 'macOS-latest'
87
91
92
+ brew untap aws/tap 2>/dev/null || true # silence some 'brew' Annotations
88
93
brew install gdal proj gettext
- brew link --force gettext
94
+ brew link --overwrite --force gettext 2>/dev/null || true
95
96
- name: Check
97
env:
0 commit comments