@@ -22,21 +22,23 @@ jobs:
2222 fail-fast : false
2323 matrix :
2424 config :
25- - {os: windows-latest, r: '4.0', vdiffr: true}
26- - {os: macOS-latest, r: '4.0', vdiffr: true}
27- - {os: macOS-latest, r: 'devel', vdiffr: false}
28- - {os: ubuntu-16.04, r: '4.0', vdiffr: true, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
29- - {os: ubuntu-16.04, r: '3.6', vdiffr: false, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
30- - {os: ubuntu-16.04, r: '3.5', vdiffr: false, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
31- - {os: ubuntu-16.04, r: '3.4', vdiffr: false, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
32- - {os: ubuntu-16.04, r: '3.3', vdiffr: false, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
33- - {os: ubuntu-16.04, r: '3.2', vdiffr: false, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
25+ - {os: windows-latest, r: '4.0', vdiffr: true, xref: true }
26+ - {os: macOS-latest, r: '4.0', vdiffr: true, xref: true }
27+ - {os: macOS-latest, r: 'devel', vdiffr: false, xref: true }
28+ - {os: ubuntu-16.04, r: '4.0', vdiffr: true, xref: true, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
29+ - {os: ubuntu-16.04, r: '3.6', vdiffr: false, xref: true, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
30+ - {os: ubuntu-16.04, r: '3.5', vdiffr: false, xref: true, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
31+ - {os: ubuntu-16.04, r: '3.4', vdiffr: false, xref: true, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
32+ - {os: ubuntu-16.04, r: '3.3', vdiffr: false, xref: true, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
33+ - {os: ubuntu-16.04, r: '3.2', vdiffr: false, xref: false, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
3434
3535 env :
3636 R_REMOTES_NO_ERRORS_FROM_WARNINGS : true
3737 CRAN : ${{ matrix.config.cran }}
3838 # don't treat missing suggested packages as error
3939 _R_CHECK_FORCE_SUGGESTS_ : false
40+ # Some packages might unavailable on the older versions, so let's ignore xref warnings
41+ _R_CHECK_RD_XREFS_ : ${{ matrix.config.xref }}
4042 # Runs vdiffr test only on the latest version of R
4143 VDIFFR_RUN_TESTS : ${{ matrix.config.vdiffr }}
4244 VDIFFR_LOG_PATH : " ../vdiffr.Rout.fail"
0 commit comments