Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 7 additions & 21 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ version: 2

steps: &steps
steps:
- restore_cache:
keys:
- cache-{{ .Environment.CIRCLE_JOB }}
- checkout
- run:
name: Install libraries
Expand All @@ -24,19 +21,12 @@ steps: &steps
- run:
name: Check package
command: R CMD check *tar.gz
- save_cache:
key: cache-{{ .Environment.CIRCLE_JOB }}
paths:
- "/usr/local/lib/R/site-library"


jobs:
releaseR4.1.0:
docker:
- image: rocker/verse:4.1.0
<<: *steps
oldR3.5.3:
releaseR4.1.2:
docker:
- image: rocker/verse:3.5.3
- image: rocker/verse:4.1.2
<<: *steps
develR:
docker:
Expand All @@ -47,14 +37,10 @@ workflows:
version: 2
build_test_deploy:
jobs:
#- releaseR4.1.0: # temporarily comment out as there is error with matrixStats package
# filters:
# tags:
# only: /.*/
#- oldR3.5.3:
# filters:
# tags:
# only: /.*/
- releaseR4.1.2:
filters:
tags:
only: /.*/
- develR:
filters:
tags:
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Imports:
broom,
pbmcapply,
pbapply,
crayon,
crayon
RoxygenNote: 7.1.2
Suggests:
rmarkdown,
Expand Down