R Under development (unstable) (2025-08-18 r88641 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > if (identical(Sys.getenv("NOT_CRAN"), "true")) file.create("system-info.Rout.save") > > # System information > Sys.info() sysname release version nodename machine "Windows" "Server x64" "build 20348" "CRANWIN3" "x86-64" login user effective_user udomain "CRAN" "CRAN" "CRAN" "CRANWIN3" > .Platform $OS.type [1] "windows" $file.sep [1] "/" $dynlib.ext [1] ".dll" $GUI [1] "RTerm" $endian [1] "little" $pkgType [1] "win.binary" $path.sep [1] ";" $r_arch [1] "x64" > sessionInfo() R Under development (unstable) (2025-08-18 r88641 ucrt) Platform: x86_64-w64-mingw32/x64 Running under: Windows Server 2022 x64 (build 20348) Matrix products: default LAPACK version 3.12.1 locale: [1] LC_COLLATE=C LC_CTYPE=German_Germany.utf8 [3] LC_MONETARY=C LC_NUMERIC=C [5] LC_TIME=C time zone: Europe/Berlin tzcode source: internal attached base packages: [1] stats graphics grDevices utils datasets methods base loaded via a namespace (and not attached): [1] compiler_4.6.0 > # Dates and times > Sys.Date() [1] "2025-08-19" > Sys.time() [1] "2025-08-19 01:46:27 CEST" > Sys.timezone() [1] "Europe/Berlin" > # Paths > getwd() [1] "d:/RCompile/CRANincoming/R-devel/workflowr.Rcheck/tests" > tempdir() [1] "D:\\temp\\2025_08_19_01_45_17_29969\\RtmpG4CTfc" > .libPaths() [1] "D:/temp/2025_08_19_01_45_17_29969/RtmpsncMiX/RLIBS_757077b86a01" [2] "D:/RCompile/recent/R/library" > path.expand("~") [1] "C:\\Users\\CRAN\\Documents" > normalizePath("/") [1] "D:\\" > # Pandoc > Sys.which("pandoc") pandoc "C:\\PROGRA~1\\Pandoc\\pandoc.exe" > rmarkdown::pandoc_available() [1] TRUE > rmarkdown::pandoc_version() [1] '3.1' > # Git > Sys.which("git") git "d:\\rtools45\\usr\\bin\\git.exe" > if (file.exists(Sys.which("git"))) system("git --version") git version 2.49.0 [1] 0 > > proc.time() user system elapsed 0.32 0.04 0.62