issue #1629 #3550
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Run CI for R using https://eddelbuettel.github.io/r-ci/ | |
| name: ci | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| _R_CHECK_FORCE_SUGGESTS_: "false" | |
| _R_CHECK_TESTS_NLINES_: 0 | |
| R_NOT_CRAN: true | |
| R_GH: true | |
| GITHUB_PAT: ${{ secrets.GITHUB_PAT }} | |
| jobs: | |
| ci: | |
| strategy: | |
| matrix: | |
| include: | |
| # - {os: macOS-latest, r: 'release'} | |
| # - {os: windows-latest, r: 'release'} | |
| - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release', depends_only: TRUE} | |
| - {os: ubuntu-latest, r: 'release'} | |
| - {os: ubuntu-latest, r: 'oldrel'} | |
| - {os: ubuntu-latest, r: '4.1.3'} | |
| - {os: ubuntu-latest, r: '4.0.0'} | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| _R_CHECK_FORCE_SUGGESTS_: "false" | |
| _R_CHECK_TESTS_NLINES_: 0 | |
| R_NOT_CRAN: true | |
| R_GH: true | |
| GITHUB_PAT: ${{ secrets.GITHUB_PAT }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Get Script | |
| run: curl -OLs https://eddelbuettel.github.io/r-ci/run.sh && chmod 0755 run.sh | |
| - name: runners up 1 | |
| run: awk '!/tinytest/' .Rbuildignore > temp && mv temp .Rbuildignore | |
| - name: runners up 2 | |
| run: awk '/^run <- FALSE/{print "run <- TRUE"; next} 1' tests/tinytest.R > temp && mv temp tests/tinytest.R | |
| - name: cat Rbuildignore | |
| run: cat .Rbuildignore | |
| - name: Bootstrap | |
| run: ./run.sh bootstrap | |
| - name: png (for svglite) | |
| run: sudo apt update -qq && sudo apt install --yes --no-install-recommends libpng-dev libfontconfig1-dev | |
| - name: svglite from source | |
| run: Rscript -e "bspm::disable();install.packages('svglite', from = 'source');bspm::enable()" | |
| - name: Dependencies | |
| run: ./run.sh install_all | |
| - name: Test | |
| run: ./run.sh run_tests | |
| # - name: Coverage | |
| # if: ${{ matrix.os == 'ubuntu-latest' }} | |
| # run: ./run.sh coverage |