Skip to content

Commit ddf555d

Browse files
committed
Stop checking on 4.1 on Windows
This is motivated by R CMD check failures in GHA, because ragg fails to install with the older toolchain. Doesn't feel like a devtools problem.
1 parent 841909f commit ddf555d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,14 @@ jobs:
2626
- {os: macos-latest, r: 'release'}
2727

2828
- {os: windows-latest, r: 'release'}
29+
# specifying oldrel-3 instead of oldrel-4, because ragg is a problem
30+
# and that's what ragg itself is doing (???)
31+
# seems like we lose coverage of rtools40's compiler, but that also
32+
# doesn't seem like a devtools problem
33+
# https://github.com/r-lib/ragg/pull/195/commits/0ce19424eab2dad15b38b41992804e3226d86e22
34+
- {os: windows-latest, r: 'oldrel-3'}
2935
# use 4.0 or 4.1 to check with rtools40's older compiler
30-
- {os: windows-latest, r: 'oldrel-4'}
36+
#- {os: windows-latest, r: 'oldrel-4'}
3137

3238
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
3339
- {os: ubuntu-latest, r: 'release'}

0 commit comments

Comments
 (0)