From cbb99f82410e81cb87351093cb66623b87c68460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Tue, 5 Sep 2023 21:34:19 +0200 Subject: [PATCH 1/2] Don't check package size --- .github/workflows/custom/before-install/action.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/custom/before-install/action.yml diff --git a/.github/workflows/custom/before-install/action.yml b/.github/workflows/custom/before-install/action.yml new file mode 100644 index 000000000..fd52fc5a4 --- /dev/null +++ b/.github/workflows/custom/before-install/action.yml @@ -0,0 +1,9 @@ +name: 'Custom steps to run before R packages are installed' + +runs: + using: "composite" + steps: + - name: Define R CMD check error condition + run: | + echo '_R_CHECK_PKG_SIZES_=FALSE' | tee -a $GITHUB_ENV + shell: bash From f388f90ee885508148c355b20a90a276a38764ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Wed, 6 Sep 2023 06:22:15 +0200 Subject: [PATCH 2/2] No support for R 3.6 --- .github/workflows/R-CMD-check.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 9d9bd1233..5fabb5e3f 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -140,7 +140,6 @@ jobs: config: - {os: windows-latest, r: 'release'} # Use 3.6 to trigger usage of RTools35 - - {os: windows-latest, r: '3.6'} steps: - uses: actions/checkout@v4 @@ -199,7 +198,6 @@ jobs: # End custom: R 3.5 # Begin custom: R 3.4 - - {os: ubuntu-22.04, r: 'oldrel-4'} # End custom: R 3.4 # Begin custom: matrix elements