Skip to content

Commit 01027fb

Browse files
committed
New data collected at 2025-12-22_00-02-04
1 parent c092f41 commit 01027fb

23 files changed

Lines changed: 96 additions & 107 deletions

github-actions/future/R-CMD-check.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ jobs:
2828
- {os: ubuntu-latest, r: 'oldrel-1' }
2929
- {os: ubuntu-latest, r: 'oldrel-2' }
3030
- {os: ubuntu-latest, r: '4.0' }
31-
- {os: ubuntu-latest, r: 'devel' , globals: develop, label: 'globals develop' }
32-
- {os: ubuntu-latest, r: '4.0' , globals: develop, label: 'globals develop' }
3331

3432
- {os: ubuntu-latest, r: 'release', strict: true, label: 'strict' }
3533

@@ -38,7 +36,6 @@ jobs:
3836
- {os: ubuntu-latest, r: 'release' , language: ko, label: ko }
3937
- {os: ubuntu-latest, r: 'release' , language: zh_CN, label: zh_CN }
4038
- {os: ubuntu-latest, r: 'release' , language: zh_TW, label: zh_TW }
41-
- {os: ubuntu-latest, r: 'release' , globals_keepWhere: false, label: '!keepWhere' }
4239
- {os: ubuntu-latest, r: 'release' , plan: multicore, fork_multithreading_enable: false, label: 'multicore, no-multithreading-in-forks' }
4340
- {os: ubuntu-latest, r: 'release' , plan: multisession, fork_multithreading_enable: false, label: 'multisession, no-multithreading-in-forks' }
4441
- {os: ubuntu-latest, r: 'release' , psock_relay_immediate: false, label: 'no-immediate-relay-in-psock' }

github-actions/future/future_tests.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- { plan: 'multicore' }
2121
- { plan: 'multisession' }
2222
- { plan: 'sequential' }
23+
- { plan: 'plan(cluster, workers = parallelly::makeClusterSequential())' }
2324
- { plan: 'future.batchtools::batchtools_local' }
2425
- { plan: 'future.batchtools::batchtools_bash' }
2526
- { plan: 'future.callr::callr' }
@@ -84,7 +85,7 @@ jobs:
8485
run: |
8586
R CMD build --no-build-vignettes --no-manual .
8687
R CMD INSTALL *.tar.gz
87-
Rscript -e future.tests::check --args --test-plan=${{ matrix.future.plan }}
88+
Rscript -e future.tests::check --args --test-plan="${{ matrix.future.plan }}"
8889
8990
- name: Upload check results
9091
if: failure()

github-actions/future/revdepcheck-top.yaml

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ name: revdepcheck-top
44

55
jobs:
66
R-CMD-check:
7-
if: "! contains(github.event.head_commit.message, '[ci skip]')"
7+
if: "! contains(github.event.head_commit.message, '[ci skip]')"
88

99
timeout-minutes: 30
10-
10+
1111
runs-on: ubuntu-latest
1212

1313
name: ${{ matrix.config.pkg }} (${{ matrix.config.r }}) ${{ matrix.config.label }}
@@ -26,17 +26,9 @@ jobs:
2626
- { r: "release", pkg: "promises" , force_suggests: false }
2727
- { r: "release", pkg: "shiny" , force_suggests: false , not_cran: false }
2828
- { r: "release", pkg: "plumber" }
29-
- { r: "release", pkg: "future.batchtools" , globals: develop, label: 'globals develop' }
30-
- { r: "release", pkg: "future.callr" , globals: develop, label: 'globals develop' }
31-
- { r: "release", pkg: "future.mirai" , globals: develop, label: 'globals develop' }
32-
- { r: "release", pkg: "doFuture" , globals: develop, label: 'globals develop' }
33-
- { r: "release", pkg: "future.apply" , globals: develop, label: 'globals develop' }
34-
- { r: "release", pkg: "furrr", not_cran: false, globals: develop, label: 'globals develop' }
35-
- { r: "release", pkg: "future.tests" , globals: develop, label: 'globals develop' }
3629
- { r: "release", pkg: "doFuture" , plan: multisession, label: multisession }
3730
- { r: "release", pkg: "future.apply" , plan: multisession, label: multisession }
3831
- { r: "release", pkg: "furrr", not_cran: false, plan: multisession, label: multisession }
39-
- { r: "release", pkg: "future.apply" , globals_keepWhere: false, label: '!keepWhere' }
4032

4133
env:
4234
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
@@ -50,7 +42,7 @@ jobs:
5042
R_FUTURE_GLOBALS_KEEPWHERE: ${{ matrix.config.globals_keepWhere }}
5143
R_GLOBALS_BRANCH: ${{ matrix.config.globals }}
5244
NOT_CRAN: true
53-
45+
5446
steps:
5547
- uses: actions/checkout@v4
5648

@@ -70,6 +62,21 @@ jobs:
7062
any::covr
7163
needs: check
7264

65+
- name: Install system dependencies
66+
run: |
67+
## 'plumber' fails to install 'units' and 'sf'
68+
if [[ "${{ matrix.config.pkg }}" == "plumber" ]]; then
69+
sudo apt install -y libudunits2-dev ## 'units'
70+
sudo apt install -y libgdal-dev libgeos-dev libproj-dev ## 'sf'
71+
fi
72+
## 'shiny' fails at run time with "Error in `dyn.load(file, DLLpath
73+
## = DLLpath, ...)`: unable to load shared object '/home/runner/
74+
## work/_temp/Library/otelsdk/libs/otelsdk.so': libprotobuf.so.32:
75+
## cannot open shared object file: No such file or directory
76+
if [[ "${{ matrix.config.pkg }}" == "shiny" ]]; then
77+
sudo apt install -y libprotobuf32t64
78+
fi
79+
7380
- name: Install dependencies
7481
run: |
7582
remotes::install_deps(dependencies = TRUE)

github-actions/future/tmate.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,12 @@ jobs:
3333
# - {os: ubuntu-latest, r: 'oldrel' }
3434
# - {os: ubuntu-latest, r: 'oldrel-1' }
3535
# - {os: ubuntu-latest, r: 'oldrel-2' }
36-
# - {os: ubuntu-latest, r: '4.0' }
3736
#
3837
# - {os: ubuntu-latest, r: 'release' , availablecores: 1, label: 'availableCores.system=1' }
3938
# - {os: ubuntu-latest, r: 'release' , availablecores: 2, label: 'availableCores.system=2' }
4039
# - {os: ubuntu-latest, r: 'release' , language: ko, label: ko }
4140
# - {os: ubuntu-latest, r: 'release' , language: zh_CN, label: zh_CN }
4241
# - {os: ubuntu-latest, r: 'release' , language: zh_TW, label: zh_TW }
43-
# - {os: ubuntu-latest, r: 'release' , globals_keepWhere: true, label: 'keepWhere' }
44-
# - {os: ubuntu-latest, r: 'release' , globals_keepWhere: false, label: '!keepWhere' }
4542
# - {os: ubuntu-latest, r: 'release' , plan: multicore, fork_multithreading_enable: false, label: 'multicore, no-multithreading-in-forks' }
4643
# - {os: ubuntu-latest, r: 'release' , plan: multisession, fork_multithreading_enable: false, label: 'multisession, no-multithreading-in-forks' }
4744
# - {os: ubuntu-latest, r: 'release' , psock_relay_immediate: false, label: 'no-immediate-relay-in-psock' }

github-actions/ggstatsplot/pkgdown.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
- name: Deploy to GitHub pages 🚀
4848
if: github.event_name != 'pull_request'
49-
uses: JamesIves/github-pages-deploy-action@v4.7.4
49+
uses: JamesIves/github-pages-deploy-action@v4.7.6
5050
with:
5151
branch: gh-pages
5252
folder: docs

github-actions/ggstatsplot/styler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
shell: Rscript {0}
5050

5151
- name: Cache styler
52-
uses: actions/cache@v4
52+
uses: actions/cache@v5
5353
with:
5454
path: ${{ steps.styler-location.outputs.location }}
5555
key: ${{ runner.os }}-styler-${{ github.sha }}

github-actions/igraph/arch-emu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
9393
- name: Restore cache
9494
# setup the GitHub cache used to maintain the ccache from one job to the next
95-
uses: actions/cache/restore@v4
95+
uses: actions/cache/restore@v5
9696
with:
9797
# location of the ccache of the chroot in the root file system
9898
path: /home/runner/rootfs/alpine-latest-${{ matrix.arch }}/home/runner/.ccache
@@ -134,7 +134,7 @@ jobs:
134134
- name: Cache
135135
# Save the cache after we are done (successfully) building
136136
# This helps to retain the ccache even if the subsequent steps are failing.
137-
uses: actions/cache/save@v4
137+
uses: actions/cache/save@v5
138138
with:
139139
path: /home/runner/rootfs/alpine-latest-${{ matrix.arch }}/home/runner/.ccache
140140
key: ${{ steps.ccache-prepare.outputs.key }}

github-actions/igraph/build-cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
cmake .. -GNinja -DBUILD_SHARED_LIBS=${{ matrix.shared_libs == 'shared' && 'ON' || 'OFF' }} -DIGRAPH_GLPK_SUPPORT=ON -DIGRAPH_GRAPHML_SUPPORT=ON -DIGRAPH_ENABLE_TLS=ON -DIGRAPH_VERIFY_FINALLY_STACK=ON -DIGRAPH_PRINT_ARITH_HEADER=ON -DFLEX_KEEP_LINE_NUMBERS=ON -DFORCE_COLORED_OUTPUT=ON -DIGRAPH_OPENMP_SUPPORT=ON
5757
5858
- name: Ccache
59-
uses: actions/cache@v4
59+
uses: actions/cache@v5
6060
with:
6161
path: ${{ env.CCACHE_DIR }}
6262
key: ccache-msys2-${{ matrix.arch }}-${{ matrix.shared_libs }}-${{ github.ref_name }}-${{ github.sha }}
@@ -79,7 +79,7 @@ jobs:
7979

8080
- name: Generate Artifacts upon Failure
8181
if: ${{ failure() }}
82-
uses: actions/upload-artifact@v5
82+
uses: actions/upload-artifact@v6
8383
with:
8484
name: failure-${{ matrix.arch }}-${{ matrix.shared_libs }}
8585
path: |

github-actions/igraph/cifuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fuzz-seconds: 720
2222
output-sarif: true
2323
- name: Upload Crash
24-
uses: actions/upload-artifact@v5
24+
uses: actions/upload-artifact@v6
2525
if: failure() && steps.build.outcome == 'success'
2626
with:
2727
name: artifacts

github-actions/lintr/pkgdown.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Deploy to GitHub pages 🚀
4242
if: github.event_name != 'pull_request'
43-
uses: JamesIves/github-pages-deploy-action@v4.7.4
43+
uses: JamesIves/github-pages-deploy-action@v4.7.6
4444
with:
4545
clean: false
4646
branch: gh-pages

0 commit comments

Comments
 (0)