File tree Expand file tree Collapse file tree 3 files changed +72
-5
lines changed Expand file tree Collapse file tree 3 files changed +72
-5
lines changed Original file line number Diff line number Diff line change
1
+ # R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
2
+
3
+ # Header
1
4
language : r
5
+ sudo : false
6
+ dist : trusty
2
7
cache : packages
3
- warnings_are_errors : false
4
- r_packages :
5
- - covr
8
+ latex : false
9
+
10
+ # env
11
+ env :
12
+ global :
13
+ - _R_CHECK_FORCE_SUGGESTS_=false
14
+ - MAKEFLAGS="-j 2"
15
+
16
+ # addons
17
+ addons :
18
+ apt :
19
+ packages :
20
+ - libmagick++-dev
21
+ - libssh2-1-dev
22
+
23
+ # matrix: 3x Linux, 1x OS X
24
+ matrix :
25
+ include :
26
+ - r : release
27
+ env :
28
+ - BUILD_PKGDOWN=true
29
+ - r : oldrel
30
+ - r : devel
31
+ - os : osx
32
+ osx_image : xcode7.3
33
+ r : release
34
+ latex : false
35
+
36
+ # notifications
37
+ notifications :
38
+ email :
39
+ on_success : change
40
+ on_failure : change
41
+
42
+ # before_script
43
+ before_script :
44
+ - R -q -e 'install.packages("remotes"); remotes::install_github("ropenscilabs/tic"); tic::prepare_all_stages()'
45
+
46
+ # after_success
6
47
after_success :
7
- - Rscript -e 'library(covr); codecov()'
48
+ - R -q -e 'tic::after_success()'
49
+
50
+ # deploy // https://github.com/travis-ci/travis-build/blob/85ef7108/lib/travis/build/addons/deploy/script.rb#L100-L107
51
+ deploy :
52
+ provider : script
53
+ script : R -q -e 'tic::deploy()'
54
+ on :
55
+ all_branches : true
56
+
57
+ # Custom parts:
58
+
59
+ # r_github_packages
60
+ r_github_packages :
61
+
62
+ # r_packages
63
+ r_packages :
64
+
65
+ # services
66
+ services :
67
+
68
+ # before_install
69
+ before_install :
Original file line number Diff line number Diff line change 1
1
Package: styler
2
2
Title: Non-invasive Pretty Printing of R code
3
- Version: 0.0-1
3
+ Version: 0.0-2
4
4
Authors@R: person("Kirill", "Müller", role = c("aut", "cre"), email = "
[email protected] ")
5
5
Description:
6
6
Pretty-prints R code without changing the user's formatting intent.
Original file line number Diff line number Diff line change
1
+ ## styler 0.0-2 (2017-06-15)
2
+
3
+ - Technical release for creation of pkgdown documentation.
4
+
5
+
1
6
## styler 0.0-1 (2017-06-15)
2
7
3
8
Initial release, work in progress.
You can’t perform that action at this time.
0 commit comments