Skip to content

Commit e69f9cd

Browse files
committed
Reconfigures manuscript on CircleCI to run only on master
See #211. In a nutshell, the free CircleCI account under which this is running has a cap on CPU time that resets every month (I believe). This means that builds that aren't well justified should not be undertaken, so that CPU time remains when it is well (or at least better) justified. Since we meanwhile have a more extensive test suite, it is hard to imagine that between the tests and the vignettes there is anything that these would miss but that the manuscript (which isn't very thorough in what of the API it is touching) would catch. Hence, rebuild only on master. Closes #211.
1 parent 1e9f6da commit e69f9cd

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.circleci/config.yml

+9
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,13 @@ jobs:
77
- checkout
88
- run: R -e "devtools::install(dep=T); rmarkdown::render('manuscripts/manuscript.Rmd')"
99

10+
workflows:
11+
version: 2
12+
13+
build_only:
14+
jobs:
15+
- build:
16+
filters:
17+
branches:
18+
only: master
1019

0 commit comments

Comments
 (0)