Compare installations performed into your libraries by conan.
Arguments
- curr
The previous installation to compare against. Can be a name (see hipercow_provision_list to get names), a negative number where
-n
indicates "n
installations ago" or a positive number wheren
indicates "then
th installation". The default value of 0 corresponds to the current installation.- prev
The previous installation to compare against. Can be a name (see hipercow_provision_list to get names), a negative number where
-n
indicates "n
installations ago" or a positive number wheren
indicates "then
th installation". The default of -1 indicates the previous installation. Must refer to an installation beforecurr
. UseNULL
or-Inf
if you want to compare against the empty installation.- driver
The name of the driver to use, or you can leave blank if only one is configured (this will be typical).
- root
The hipercow root
Examples
cleanup <- hipercow_example_helper()
#> ℹ This example uses a special helper
hipercow_provision("pkgdepends", refs = "knitr")
#> /`-'\ _______ ___ ___ ____
#> \,T./ / __/ _ \/ _ \/ _ `/ _ \
#> | \__/\___/_//_/\_,_/_//_/
#> | ---- THE LIBRARIAN ----
#>
#> Bootstrapping from: /home/runner/work/_temp/Library
#> Installing into library: hipercow/lib
#> Using method pkgdepends
#> Running in path: /home/runner/work/_temp/hv-20250328-1c631533fafe
#> Library paths:
#> - /home/runner/work/_temp/hv-20250328-1c631533fafe/hipercow/lib
#> - /opt/R/4.4.3/lib/R/site-library
#> - /opt/R/4.4.3/lib/R/library
#> id: 20250328151753
#> Logs from pkgdepends follow:
#>
#> -------------------------------------------------------------------------------
#>
#>
#> ── repos
#> • https://cloud.r-project.org
#>
#> ── refs
#> • knitr
#>
#> ✔ Updated metadata database: 4.62 MB in 9 files.
#>
#> ℹ Updating metadata database
#> ✔ Updating metadata database ... done
#>
#> ! Failed to update system requirement mappings, will use cached mappings.
#> + evaluate 1.0.3 [bld][dl]
#> + highr 0.11 [bld][dl]
#> + knitr 1.50 [bld][dl]
#> + xfun 0.51 [bld][cmp][dl]
#> + yaml 2.3.10 [bld][cmp][dl]
#> ℹ Getting 5 pkgs with unknown sizes
#> ✔ Got highr 0.11 (source) (13.85 kB)
#> ✔ Got evaluate 1.0.3 (source) (37.75 kB)
#> ✔ Got xfun 0.51 (source) (175.80 kB)
#> ✔ Got yaml 2.3.10 (source) (94.56 kB)
#> ✔ Got knitr 1.50 (source) (534.26 kB)
#> ℹ Building evaluate 1.0.3
#> ℹ Building xfun 0.51
#> ℹ Building yaml 2.3.10
#> ✔ Built evaluate 1.0.3 (1.8s)
#> ✔ Installed evaluate 1.0.3 (20ms)
#> ✔ Built xfun 0.51 (4s)
#> ✔ Installed xfun 0.51 (22ms)
#> ℹ Building highr 0.11
#> ✔ Built highr 0.11 (1.3s)
#> ✔ Installed highr 0.11 (26ms)
#> ✔ Built yaml 2.3.10 (5.6s)
#> ✔ Installed yaml 2.3.10 (1s)
#> ℹ Building knitr 1.50
#> ✔ Built knitr 1.50 (4.4s)
#> ✔ Installed knitr 1.50 (37ms)
#> ✔ Summary: 5 new in 18.2s
#>
#> -------------------------------------------------------------------------------
#> Writing library description to 'hipercow/lib/.conan/20250328151753'
#> Done!
hipercow_provision("pkgdepends", refs = "data.table")
#> /`-'\ _______ ___ ___ ____
#> \,T./ / __/ _ \/ _ \/ _ `/ _ \
#> | \__/\___/_//_/\_,_/_//_/
#> | ---- THE LIBRARIAN ----
#>
#> Bootstrapping from: /home/runner/work/_temp/Library
#> Installing into library: hipercow/lib
#> Using method pkgdepends
#> Running in path: /home/runner/work/_temp/hv-20250328-1c631533fafe
#> Library paths:
#> - /home/runner/work/_temp/hv-20250328-1c631533fafe/hipercow/lib
#> - /opt/R/4.4.3/lib/R/site-library
#> - /opt/R/4.4.3/lib/R/library
#> id: 20250328151813
#> Logs from pkgdepends follow:
#>
#> -------------------------------------------------------------------------------
#>
#>
#> ── repos
#> • https://cloud.r-project.org
#>
#> ── refs
#> • data.table
#> ℹ Loading metadata database
#> ✔ Loading metadata database ... done
#>
#> + data.table 1.17.0 [bld][cmp]
#> ℹ No downloads are needed, 1 pkg is cached
#> ✔ Got data.table 1.17.0 (source) (5.83 MB)
#> ℹ Building data.table 1.17.0
#> ✔ Built data.table 1.17.0 (19.3s)
#> ✔ Installed data.table 1.17.0 (63ms)
#> ✔ Summary: 1 new in 19.3s
#>
#> -------------------------------------------------------------------------------
#> Writing library description to 'hipercow/lib/.conan/20250328151813'
#> Done!
hipercow_provision_compare()
#> ── Comparing conan installations ───────────────────────────────────────────────
#> • 20250328151753 1st; previous installation (less than a minute ago)
#> • 20250328151813 2nd; current installation (moments ago)
#>
#> ── 5 unchanged packages ──
#>
#> ℹ To show unchanged packages, print with 'show_unchanged = TRUE'
#>
#> ── 1 added package ──
#>
#> • data.table (1.17.0) CRAN
cleanup()
#> ℹ Cleaning up example