diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2022-03-03 10:23:16 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2022-03-03 10:23:16 +0100 |
commit | 75d436be311fff523148dbb078d4c8336740dea5 (patch) | |
tree | d004bfd2e0dc552e21be9a09317c7f883c7217a4 /GNUmakefile | |
parent | b69d55795c77725f5eaa4c99f51f5e1083665872 (diff) |
More work to try to pass tests on R-devel winbuilder
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 75a18e58..d6a6d9b5 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -57,6 +57,9 @@ build-no-vignettes: $(TGZVNR) install: build "$(RBIN)/R" CMD INSTALL $(TGZ) +devinstall: build + "$(RDEVBIN)/R" CMD INSTALL $(TGZ) + quickinstall: build-no-vignettes "$(RBIN)/R" CMD INSTALL $(TGZVNR) @@ -82,7 +85,7 @@ test: install "$(RBIN)/Rscript" -e 'options(cli.dynamic = TRUE); devtools::test()' 2>&1 | tee test.log sed -i -e "s/.*\r.*\r//" test.log -devtest: install +devtest: devinstall "$(RDEVBIN)/Rscript" -e 'options(cli.dynamic = TRUE); devtools::test()' 2>&1 | tee test_dev.log sed -i -e "s/\r.*\r//" test_dev.log |