Skip to content

Commit 1341050

Browse files
Tweaks to reduce Annotations noise
1 parent 626f274 commit 1341050

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/R-CMD-check-occasional.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ jobs:
7070
with:
7171
r-version: ${{ matrix.r }}
7272

73+
- name: Set script permissions
74+
run: chmod +x configure cleanup 2>/dev/null || true # Silence some GHA Annotations
75+
shell: bash
76+
7377
- name: Install check dependencies (Ubuntu)
7478
if: matrix.os == 'ubuntu-latest'
7579
run: |
@@ -85,8 +89,9 @@ jobs:
8589
- name: Install check dependencies (macOS)
8690
if: matrix.os == 'macOS-latest'
8791
run: |
92+
brew untap aws/tap 2>/dev/null || true # silence some 'brew' Annotations
8893
brew install gdal proj gettext
89-
brew link --force gettext
94+
brew link --overwrite --force gettext 2>/dev/null || true
9095
9196
- name: Check
9297
env:

0 commit comments

Comments
 (0)