Last updated on 2026-03-21 03:02:37 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.5.3 | 12.82 | 1144.97 | 1157.79 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.5.3 | 9.10 | 682.19 | 691.29 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.5.3 | 22.00 | 1653.78 | 1675.78 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 0.5.3 | 22.00 | 1891.93 | 1913.93 | OK | |
| r-devel-macos-arm64 | 0.5.3 | 3.00 | 166.00 | 169.00 | OK | |
| r-devel-windows-x86_64 | 0.5.3 | 15.00 | 739.00 | 754.00 | ERROR | |
| r-patched-linux-x86_64 | 0.5.3 | 12.24 | 1082.42 | 1094.66 | OK | |
| r-release-linux-x86_64 | 0.5.3 | 9.58 | 1122.20 | 1131.78 | OK | |
| r-release-macos-arm64 | 0.5.3 | OK | ||||
| r-release-macos-x86_64 | 0.5.3 | 8.00 | 539.00 | 547.00 | OK | |
| r-release-windows-x86_64 | 0.5.3 | 14.00 | 692.00 | 706.00 | OK | |
| r-oldrel-macos-arm64 | 0.5.3 | OK | ||||
| r-oldrel-macos-x86_64 | 0.5.3 | 9.00 | 478.00 | 487.00 | OK | |
| r-oldrel-windows-x86_64 | 0.5.3 | 20.00 | 996.00 | 1016.00 | OK |
Version: 0.5.3
Check: examples
Result: ERROR
Running examples in 'ale-Ex.R' failed
The error most likely occurred in:
> ### Name: retrieve_rds
> ### Title: Retrieve an R object from the first successful source among
> ### multiple attempts
> ### Aliases: retrieve_rds
>
> ### ** Examples
>
> # Example 1: Try a remote RDS first; if it fails, run the code block.
> # - With char_as_url = TRUE (default), the character vector is collapsed with "/",
> # opened as a URL, and read via readRDS().
> # - If the URL works, the serialized object is returned immediately.
> # - If it fails, the code block within curly quotes is evaluated in the
> # caller's environment and its value is returned (here it would assign and
> # return `ale_gam_diamonds`).
> serialized_objects_site <- "https://github.com/tripartio/ale/raw/main/download"
> retrieve_rds(
+ c(serialized_objects_site, "ale_gam_diamonds.0.5.2.rds"),
+ {
+ ale_gam_diamonds <- "Code for generating an ALE object"
+ }
+ )
Warning in readRDS(url(paste0(it.attempt, collapse = "/"))) :
cannot open URL 'https://github.com/tripartio/ale/raw/main/download/ale_gam_diamonds.0.5.2.rds': HTTP status was '502 Bad Gateway'
Error in `retrieve_rds()`:
! None of the provided options successfully retrieved an object.
Backtrace:
▆
1. └─ale::retrieve_rds(...)
2. └─cli::cli_abort("None of the provided options successfully retrieved an object.")
3. └─rlang::abort(...)
Execution halted
Flavor: r-devel-windows-x86_64