Skip to content

Commit 619ce53

Browse files
authored
ci: Cleanup and fix macOS (#76)
1 parent b4e6c11 commit 619ce53

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,6 @@ jobs:
250250
fail-fast: false
251251
matrix: ${{fromJson(needs.rcc-smoke.outputs.versions-matrix)}}
252252

253-
timeout-minutes: 240
254-
255253
steps:
256254
- uses: actions/checkout@v4
257255
with:
@@ -291,7 +289,6 @@ jobs:
291289
results: ${{ runner.os }}-r${{ matrix.r }}
292290

293291
- uses: ./.github/workflows/covr
294-
timeout-minutes: 240
295292
if: ${{ matrix.covr }}
296293
with:
297294
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/install/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ runs:
6060
# echo "_R_CHECK_CRAN_INCOMING_=true" | tee -a $GITHUB_ENV
6161
echo "_R_CHECK_CRAN_INCOMING_SKIP_LARGE_VERSION_=true" | tee -a $GITHUB_ENV
6262
echo "_R_CHECK_FORCE_SUGGESTS_=false" | tee -a $GITHUB_ENV
63+
shell: bash
64+
65+
- name: Set environment variables (non-macOS only)
66+
if: runner.os != 'macOS'
67+
run: |
6368
echo "_R_CHECK_THINGS_IN_OTHER_DIRS_=true" | tee -a $GITHUB_ENV
6469
shell: bash
6570

0 commit comments

Comments
 (0)