Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
julien veyssier
r-package-checker
Commits
e6335dca
Commit
e6335dca
authored
Jun 03, 2015
by
Julien Veyssier
Browse files
add screenshots, move files
parent
567c8f58
Changes
9
Show whitespace changes
Inline
Side-by-side
README.md
View file @
e6335dca
...
...
@@ -31,7 +31,14 @@ There is basically three ways to use R package checker :
# Screenshots
---
Bash script output :


Simple web interface examples :


# Requirements
---
...
...
@@ -45,5 +52,33 @@ Bash script output :
Adjust variables in config.php :
```
php
// name of the package to test
$package_to_test
=
"mypkg"
;
// path to rtest bash script
$rtest_location
=
"/home/user/rcheck/rtest.sh"
;
// where you want to install packages
$rlib_location
=
"/home/user/Rlib_test"
;
//$email_addr = "Emmanuel.Paradis@univ-montp2.fr";
$email_addr
=
"your@email.address"
;
// path to xvfb-run
$xvfbrun_location
=
"/home/user/xvfb-run"
;
// directory for all results directories
// (where to put check results)
$all_results_dir
=
"/home/user/rcheck_results/"
;
// repository to use to get last version of the package to test
$package_to_test_repo
=
"http://my.pkg.repo.org/"
;
// number of threads used for parallel checking
$nb_threads
=
4
;
// base URL where you host the web interface
// (will prefix start.php and view.php in links)
$base_url
=
"http://my.server.org/r-package-checker/"
;
```
screenshots/rcheck_bash.png
0 → 100644
View file @
e6335dca
161 KB
screenshots/rcheck_web.png
0 → 100644
View file @
e6335dca
131 KB
screenshots/rcheck_web_problem.png
0 → 100644
View file @
e6335dca
114 KB
depends.R
→
utils/
depends.R
View file @
e6335dca
File moved
xvfb-run
→
utils/
xvfb-run
View file @
e6335dca
File moved
config.php
→
www/
config.php
View file @
e6335dca
<?php
// base URL that prefixes start.php, view.php
$base_url
=
"http://my.server.org/r-package-checker/"
;
//$email_addr = "Emmanuel.Paradis@univ-montp2.fr";
$email_addr
=
"your@email.address"
;
// name of the package to test
$package_to_test
=
"mypkg"
;
// path to rtest bash script
$rtest_location
=
"/home/user/rcheck/rtest.sh"
;
...
...
@@ -12,19 +9,24 @@ $rtest_location = "/home/user/rcheck/rtest.sh";
// where you want to install packages
$rlib_location
=
"/home/user/Rlib_test"
;
//$email_addr = "Emmanuel.Paradis@univ-montp2.fr";
$email_addr
=
"your@email.address"
;
// path to xvfb-run
$xvfbrun_location
=
"/home/user/xvfb-run"
;
// directory containing all results directories
// directory for all results directories
// (where to put check results)
$all_results_dir
=
"/home/user/rcheck_results/"
;
// name of the package to test
$package_to_test
=
"mypkg"
;
// repository to use to get last version of the package to test
$package_to_test_repo
=
"http://my.pkg.repo.org/"
;
// number of threads used for parallel checking
$nb_threads
=
4
;
// base URL where you host the web interface
// (will prefix start.php and view.php in links)
$base_url
=
"http://my.server.org/r-package-checker/"
;
?>
start.php
→
www/
start.php
View file @
e6335dca
File moved
view.php
→
www/
view.php
View file @
e6335dca
File moved
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment