From abd788d9d729ac5d3a6351e4e584751f2ff789da Mon Sep 17 00:00:00 2001 From: Patrick Schratz Date: Mon, 29 Aug 2022 09:36:55 +0200 Subject: [PATCH] Update tic templates [ci-skip] (#197) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .github/workflows/tic.yml | 53 ++++----------------------------------- 1 file changed, 5 insertions(+), 48 deletions(-) diff --git a/.github/workflows/tic.yml b/.github/workflows/tic.yml index c39270aeb..5e3c76a6c 100644 --- a/.github/workflows/tic.yml +++ b/.github/workflows/tic.yml @@ -1,5 +1,5 @@ ## tic GitHub Actions template: custom-deploy -## revision date: 2022-03-01 +## revision date: 2022-08-28 # [Custom header] on: workflow_dispatch: @@ -39,9 +39,6 @@ jobs: - { os: ubuntu-latest, r: "devel" } env: - # otherwise remotes::fun() errors cause the build to fail. Example: Unavailability of binaries - R_REMOTES_NO_ERRORS_FROM_WARNINGS: true - CRAN: ${{ matrix.config.cran }} # make sure to run `tic::use_ghactions_deploy()` to set up deployment TIC_DEPLOY_KEY: ${{ secrets.TIC_DEPLOY_KEY }} # prevent rgl issues because no X11 display is available @@ -49,8 +46,6 @@ jobs: # if you use bookdown or blogdown, replace "PKGDOWN" by the respective # capitalized term. This also might need to be done in tic.R BUILD_PKGDOWN: ${{ matrix.config.pkgdown }} - # macOS >= 10.15.4 linking - SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk # use GITHUB_TOKEN from GitHub to workaround rate limits in {remotes} GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} @@ -77,60 +72,22 @@ jobs: - name: "[Cache] Cache R packages" if: runner.os != 'Windows' - uses: pat-s/always-upload-cache@v2 + uses: pat-s/always-upload-cache@v3 with: path: ${{ env.R_LIBS_USER }} key: ${{ runner.os }}-r-${{ matrix.config.r }}-${{steps.date.outputs.date}} restore-keys: ${{ runner.os }}-r-${{ matrix.config.r }}-${{steps.date.outputs.date}} - - name: "[Stage] [Linux] Install required system libs" - if: runner.os == 'Linux' - run: sudo apt install libcurl4-openssl-dev libgit2-dev - - # for some strange Windows reason this step and the next one need to be decoupled - - name: "[Stage] Prepare" - run: | - Rscript -e "if (!requireNamespace('remotes')) install.packages('remotes', type = 'source')" - Rscript -e "if (!requireNamespace('curl')) install.packages('curl', type = 'source')" - - - name: "[Stage] [macOS] Install libgit2" - if: runner.os == 'macOS' - run: brew install libgit2 - - - name: "[Stage] [macOS] Install system libs for pkgdown" - if: runner.os == 'macOS' && matrix.config.pkgdown != '' - run: brew install harfbuzz fribidi - - - name: "[Stage] [Linux] Install system libs for pkgdown" - if: runner.os == 'Linux' && matrix.config.pkgdown != '' - run: sudo apt install libharfbuzz-dev libfribidi-dev - - # Try to automatically check for system dependencies and install them - # Note: this might not catch all required system libs and manual action might be needed - - name: "[Stage] [Linux] Install linux system dependencies" - if: runner.os == 'Linux' - run: | - while read -r cmd - do - eval sudo $cmd - done < <(Rscript -e 'writeLines(remotes::system_requirements("ubuntu", "20.04"))') + - name: "[Stage] Install pak" + run: Rscript -e "install.packages('pak', repos = 'https://r-lib.github.io/p/pak/stable')" - name: "[Stage] Install" - if: matrix.config.os != 'macOS-latest' || matrix.config.r != 'devel' - run: Rscript -e "remotes::install_github('ropensci/tic')" -e "print(tic::dsl_load())" -e "tic::prepare_all_stages()" -e "tic::before_install()" -e "tic::install()" - - # macOS devel needs its own stage because we need to work with an option to suppress the usage of binaries - - name: "[Stage] Prepare & Install (macOS-devel)" - if: matrix.config.os == 'macOS-latest' && matrix.config.r == 'devel' - run: | - echo -e 'options(Ncpus = 4, pkgType = "source", repos = structure(c(CRAN = "https://cloud.r-project.org/")))' > $HOME/.Rprofile - Rscript -e "remotes::install_github('ropensci/tic')" -e "print(tic::dsl_load())" -e "tic::prepare_all_stages()" -e "tic::before_install()" -e "tic::install()" + run: Rscript -e "if (grepl('Ubuntu', Sys.info()[['version']]) && !grepl('Under development', R.version[['status']])) {options(repos = c(CRAN = sprintf('https://packagemanager.rstudio.com/all/__linux__/%s/latest', system('lsb_release -cs', intern = TRUE))))}else{options(repos = c(CRAN = 'cloud.r-project.org'))}; pak::pkg_install('ropensci/tic')" -e "print(tic::dsl_load())" -e "tic::prepare_all_stages()" -e "tic::before_install()" -e "tic::install()" - name: "[Stage] Script" run: Rscript -e 'tic::script()' - name: "[Stage] After Success" - if: matrix.config.os == 'macOS-latest' && matrix.config.r == 'release' run: Rscript -e "tic::after_success()" - name: "[Stage] Upload R CMD check artifacts"