...
|
...
|
@@ -105,16 +105,16 @@ jobs:
|
105
|
105
|
uses: actions/cache@v3
|
106
|
106
|
with:
|
107
|
107
|
path: ${{ env.R_LIBS_USER }}
|
108
|
|
- key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-devel-${{ hashFiles('.github/depends.Rds') }}
|
109
|
|
- restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-devel-
|
|
108
|
+ key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_16-r-4.2-${{ hashFiles('.github/depends.Rds') }}
|
|
109
|
+ restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_16-r-4.2-
|
110
|
110
|
|
111
|
111
|
- name: Cache R packages on Linux
|
112
|
112
|
if: "!contains(github.event.head_commit.message, '/nocache') && runner.os == 'Linux' "
|
113
|
113
|
uses: actions/cache@v3
|
114
|
114
|
with:
|
115
|
115
|
path: /home/runner/work/_temp/Library
|
116
|
|
- key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-devel-${{ hashFiles('.github/depends.Rds') }}
|
117
|
|
- restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-devel-
|
|
116
|
+ key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_16-r-4.2-${{ hashFiles('.github/depends.Rds') }}
|
|
117
|
+ restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_16-r-4.2-
|
118
|
118
|
|
119
|
119
|
- name: Install Linux system dependencies
|
120
|
120
|
if: runner.os == 'Linux'
|
...
|
...
|
@@ -176,7 +176,7 @@ jobs:
|
176
|
176
|
gha_repos <- if(
|
177
|
177
|
.Platform$OS.type == "unix" && Sys.info()["sysname"] != "Darwin"
|
178
|
178
|
) c(
|
179
|
|
- "AnVIL" = "https://bioconductordocker.blob.core.windows.net/packages/3.17/bioc",
|
|
179
|
+ "AnVIL" = "https://bioconductordocker.blob.core.windows.net/packages/3.16/bioc",
|
180
|
180
|
BiocManager::repositories()
|
181
|
181
|
) else BiocManager::repositories()
|
182
|
182
|
|
...
|
...
|
@@ -218,7 +218,7 @@ jobs:
|
218
|
218
|
- name: Install pkgdown
|
219
|
219
|
if: github.ref == 'refs/heads/master' && env.run_pkgdown == 'true' && runner.os == 'Linux'
|
220
|
220
|
run: |
|
221
|
|
- remotes::install_github("r-lib/pkgdown")
|
|
221
|
+ remotes::install_cran("pkgdown")
|
222
|
222
|
shell: Rscript {0}
|
223
|
223
|
|
224
|
224
|
- name: Session info
|
...
|
...
|
@@ -302,7 +302,7 @@ jobs:
|
302
|
302
|
if: failure()
|
303
|
303
|
uses: actions/upload-artifact@master
|
304
|
304
|
with:
|
305
|
|
- name: ${{ runner.os }}-biocversion-devel-r-devel-results
|
|
305
|
+ name: ${{ runner.os }}-biocversion-RELEASE_3_16-r-4.2-results
|
306
|
306
|
path: check
|
307
|
307
|
|
308
|
308
|
|