Skip to content

Commit 6ae6ef5

Browse files
committed
combining
1 parent cd7b6f0 commit 6ae6ef5

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

.github/workflows/reverse-dependencies.yaml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name: Reverse Dependency Checks
1010

1111
jobs:
1212
revdep-checks:
13-
runs-on: ubuntu-latest
13+
runs-on: macos-latest
1414
strategy:
1515
fail-fast: false
1616
matrix:
@@ -26,16 +26,14 @@ jobs:
2626
- uses: actions/checkout@v4
2727
- uses: r-lib/actions/setup-pandoc@v2
2828
- uses: r-lib/actions/setup-r@v2
29-
with:
30-
use-public-rspm: true
3129

32-
#- name: Install R Package Build Dependencies
33-
# uses: r-hub/actions/setup-r-sysreqs@v1
34-
# with:
35-
# type: full
30+
- name: Install R Package Build Dependencies
31+
uses: r-hub/actions/setup-r-sysreqs@v1
32+
with:
33+
type: full
3634

37-
#- name: Install additional build dependencies
38-
# run: brew install jags
35+
- name: Install additional build dependencies
36+
run: brew install jags
3937

4038
- uses: r-lib/actions/setup-r-dependencies@v2
4139
with:
@@ -67,7 +65,7 @@ jobs:
6765
6866
pak::pak(revdep_details[,"Package"])
6967
70-
tools::check_packages_in_dir("./revdepchecks", Ncpus = 4)
68+
tools::check_packages_in_dir("./revdepchecks", Ncpus = 3)
7169
7270
res <- tools::check_packages_in_dir_details("revdepchecks/")
7371
saveRDS(res, file = "batch-${{ matrix.batch }}-status.rds")
@@ -81,7 +79,7 @@ jobs:
8179

8280
# Combine all results
8381
combine-results:
84-
runs-on: ubuntu-latest
82+
runs-on: macos-latest
8583
needs: revdep-checks
8684
if: always()
8785

0 commit comments

Comments
 (0)