Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Feret Jean-Baptiste
biodivMapR
Commits
6f0b8e58
Commit
6f0b8e58
authored
Oct 28, 2019
by
floriandeboissieu
Browse files
add tic
parent
0107f46a
Changes
5
Hide whitespace changes
Inline
Side-by-side
.Rbuildignore
View file @
6f0b8e58
...
...
@@ -3,3 +3,6 @@
^examples
^doc
^TODO.md
^\.travis\.yml$
^appveyor\.yml$
^tic\.R$
.gitignore
View file @
6f0b8e58
Meta
doc
.Rproj.user
.Rbuildignore
.Rhistory
TODO.md
.travis.yml
0 → 100644
View file @
6f0b8e58
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
# Default configuration for use with tic package
# tic documentation to get started: https://ropenscilabs.github.io/tic/
# Usually you shouldn't need to change the first part of the file
addons
:
apt
:
sources
:
-
sourceline
:
'
ppa:ubuntugis/ubuntugis-unstable'
packages
:
-
libudunits2-dev
-
libnetcdf-dev
-
libproj-dev
-
libgeos-dev
-
libgdal-dev
-
netcdf-bin
# DO NOT CHANGE THE CODE BELOW
before_install
:
-
R -q -e 'if (!requireNamespace("remotes")) install.packages("remotes")'
-
R -q -e 'if (getRversion() < "3.2" && !requireNamespace("curl")) install.packages("curl")'
-
R -q -e 'remotes::install_github("ropenscilabs/tic", upgrade = "always"); print(tic::dsl_load()); tic::prepare_all_stages()'
-
R -q -e 'tic::before_install()'
install
:
R -q -e 'tic::install()'
after_install
:
R -q -e 'tic::after_install()'
before_script
:
R -q -e 'tic::before_script()'
script
:
R -q -e 'tic::script()'
after_success
:
R -q -e 'tic::after_success()'
after_failure
:
R -q -e 'tic::after_failure()'
before_deploy
:
R -q -e 'tic::before_deploy()'
deploy
:
provider
:
script
script
:
R -q -e 'tic::deploy()'
on
:
all_branches
:
true
after_deploy
:
R -q -e 'tic::after_deploy()'
after_script
:
R -q -e 'tic::after_script()'
# DO NOT CHANGE THE CODE ABOVE
# Custom parts:
# Header
language
:
r
sudo
:
false
dist
:
xenial
cache
:
packages
latex
:
false
#env
env
:
global
:
-
MAKEFLAGS="-j 2"
#services
services
:
appveyor.yml
0 → 100644
View file @
6f0b8e58
# DO NOT CHANGE the "init" and "install" sections below
# Download script file from GitHub
init
:
ps
:
|
$ErrorActionPreference = "Stop"
Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1"
Import-Module '..\appveyor-tool.ps1'
install
:
-
ps
:
Bootstrap
-
cmd
:
Rscript -e "writeLines('options(repos = \'https://cloud.r-project.org\')', '~/.Rprofile')"
-
cmd
:
Rscript -e "getOption('repos')"
-
cmd
:
Rscript -e "if (!requireNamespace('remotes')) install.packages('remotes', type = 'binary')"
-
cmd
:
Rscript -e "if (getRversion() < '3.2' && !requireNamespace('curl')) install.packages('curl', type = 'binary')"
-
cmd
:
Rscript -e "options(pkgType = 'binary'); remotes::install_github('ropenscilabs/tic', upgrade = 'always'); print(tic::dsl_load()); tic::prepare_all_stages()"
before_build
:
Rscript -e "tic::before_install()"
build_script
:
Rscript -e "tic::install()"
after_build
:
Rscript -e "tic::after_install()"
before_test
:
Rscript -e "tic::before_script()"
test_script
:
Rscript -e "tic::script()"
on_success
:
Rscript -e "try(tic::after_success(), silent = TRUE)"
on_failure
:
Rscript -e "tic::after_failure()"
before_deploy
:
Rscript -e "tic::before_deploy()"
deploy_script
:
Rscript -e "tic::deploy()"
after_deploy
:
Rscript -e "tic::after_deploy()"
on_finish
:
Rscript -e "tic::after_script()"
# Adapt as necessary starting from here
#on_failure:
# - 7z a failure.zip *.Rcheck\*
# - appveyor PushArtifact failure.zip
#environment:
# The example below will not work for your repository,
# you need to encrypt your own token.
# Please follow https://ci.appveyor.com/tools/encrypt .
#GITHUB_PAT:
# secure: VXO22OHLkl4YhVIomSMwCZyOTx03Xf2WICaVng9xH7gISlAg8a+qrt1DtFtk8sK5
artifacts
:
-
path
:
'
*.Rcheck\**\*.log'
name
:
Logs
-
path
:
'
*.Rcheck\**\*.out'
name
:
Logs
-
path
:
'
*.Rcheck\**\*.fail'
name
:
Logs
-
path
:
'
*.Rcheck\**\*.Rout'
name
:
Logs
-
path
:
'
\*_*.tar.gz'
name
:
Bits
-
path
:
'
\*_*.zip'
name
:
Bits
tic.R
0 → 100644
View file @
6f0b8e58
do_package_checks
()
if
(
ci_on_travis
())
{
do_pkgdown
()
}
Write
Preview
Markdown
is supported
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