From 96082a9de4116c8ad637464f21c55525c582f9d2 Mon Sep 17 00:00:00 2001 From: Scott Chamberlain Date: Fri, 19 Aug 2022 08:20:03 -0700 Subject: [PATCH] update gh actions script --- .github/workflows/R-check.yaml | 62 ++++------------------------------ 1 file changed, 7 insertions(+), 55 deletions(-) diff --git a/.github/workflows/R-check.yaml b/.github/workflows/R-check.yaml index 8229be3..d749cd9 100644 --- a/.github/workflows/R-check.yaml +++ b/.github/workflows/R-check.yaml @@ -14,9 +14,8 @@ jobs: config: - { os: windows-latest, r: 'release'} - { os: windows-latest, r: 'devel'} - - { os: macOS-latest, r: 'release'} - # - { os: macOS-latest, r: 'devel'} - - { os: ubuntu-18.04, r: 'release'} + - { os: ubuntu-20.04, r: 'release'} + - { os: ubuntu-20.04, r: 'devel'} env: R_REMOTES_NO_ERRORS_FROM_WARNINGS: true @@ -32,63 +31,16 @@ jobs: - uses: r-lib/actions/setup-pandoc@v2 - - name: Query dependencies - run: | - install.packages('remotes') - saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2) - writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version") - shell: Rscript {0} - - - name: Install pak - run: | - install.packages("pak", repos = "https://r-lib.github.io/p/pak/dev/") - shell: Rscript {0} - - - name: Cache R packages - uses: actions/cache@v2 + - uses: r-lib/actions/setup-r-dependencies@v2 with: - path: ${{ env.R_LIBS_USER }} - key: ${{ runner.os }}-r-${{ matrix.config.r }}-${{ steps.install-r.outputs.installed-r-version }}-1- - - - name: Install system dependencies - if: runner.os == 'Linux' - env: - RHUB_PLATFORM: linux-x86_64-ubuntu-gcc - run: | - while read -r cmd - do - eval sudo $cmd - done < <(Rscript -e 'writeLines(pak::local_system_requirements("ubuntu", "18.04"))') - - - name: Install dependencies - run: | - pak::local_install_dev_deps() - pak::pkg_install("rcmdcheck") - shell: Rscript {0} - - - name: Session info - if: runner.os != 'Windows' - run: | - options(width = 100) - pkgs <- installed.packages()[, "Package"] - sessioninfo::session_info(pkgs, include_base = TRUE) - shell: Rscript {0} + extra-packages: any::rcmdcheck + needs: check - uses: r-lib/actions/check-r-package@v2 - - - name: Show testthat output - if: always() - run: find check -name 'test-all.Rout*' -exec cat '{}' \; || true - shell: bash - - - name: Upload check results - if: failure() - uses: actions/upload-artifact@v2 with: - name: ${{ runner.os }}-r${{ matrix.config.r }}-results - path: check + upload-snapshots: true - name: Test coverage - if: matrix.config.os == 'macOS-latest' && matrix.config.r == 'release' + if: matrix.config.os == 'ubuntu-20.04' && matrix.config.r == 'release' run: | Rscript -e 'install.packages("covr")' -e 'covr::codecov(token = "${{secrets.CODECOV_TOKEN}}")'