Skip to content

Commit ce30b52

Browse files
committed
Revert "Deploying to gh-pages from @ 38b229e 🚀"
This reverts commit aabddfe.
1 parent aabddfe commit ce30b52

File tree

629 files changed

+46000
-32319
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

629 files changed

+46000
-32319
lines changed

.DS_Store

6 KB
Binary file not shown.

.Rbuildignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
^CRAN-RELEASE$
2+
^.*\.Rproj$
3+
^\.Rproj\.user$
4+
^\.travis\.yml$
5+
^cran-comments.md$
6+
^cran-comments\.md$
7+
^README\.md$
8+
LICENSE
9+
man-roxygen/*
10+
^revdep$
11+
^docs$
12+
tests/testthat/Rplots\.pdf
13+
^docs$
14+
^_pkgdown\.yml$
15+
^data-raw$
16+
vignettes/loo2-lfo_cache/*
17+
vignettes/loo2-non-factorizable_cache/*
18+
^\.appveyor\.yml$
19+
^\.codecov\.yml$
20+
.github/*
21+
^\.github$
22+
^vignettes/online-only$
23+
^CRAN-SUBMISSION$
24+
^release-prep\.R$

.appveyor.yml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# DO NOT CHANGE the "init" and "install" sections below
2+
3+
# Download script file from GitHub
4+
init:
5+
ps: |
6+
$ErrorActionPreference = "Stop"
7+
Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1"
8+
Import-Module '..\appveyor-tool.ps1'
9+
10+
install:
11+
- ps: Bootstrap
12+
- Rscript -e "install.packages('covr', repos = 'https://cloud.r-project.org')"
13+
14+
cache:
15+
- C:\RLibrary
16+
17+
environment:
18+
NOT_CRAN: true
19+
_R_CHECK_FORCE_SUGGESTS_: false
20+
WARNINGS_ARE_ERRORS: 1
21+
R_BUILD_ARGS: --no-build-vignettes --no-manual
22+
R_CHECK_ARGS: --ignore-vignettes --no-manual --as-cran
23+
# env vars that may need to be set, at least temporarily, from time to time
24+
# see https://github.com/krlmlr/r-appveyor#readme for details
25+
# USE_RTOOLS: true
26+
# R_REMOTES_STANDALONE: true
27+
28+
# Adapt as necessary starting from here
29+
30+
build_script:
31+
- travis-tool.sh install_deps
32+
33+
test_script:
34+
- travis-tool.sh run_tests
35+
36+
on_success:
37+
- Rscript -e "covr::codecov(quiet = FALSE)"
38+
39+
on_failure:
40+
- 7z a failure.zip *.Rcheck\*
41+
- appveyor PushArtifact failure.zip
42+
43+
artifacts:
44+
- path: '*.Rcheck\**\*.log'
45+
name: Logs
46+
47+
- path: '*.Rcheck\**\*.out'
48+
name: Logs
49+
50+
- path: '*.Rcheck\**\*.fail'
51+
name: Logs
52+
53+
- path: '*.Rcheck\**\*.Rout'
54+
name: Logs
55+
56+
- path: '\*_*.tar.gz'
57+
name: Bits
58+
59+
- path: '\*_*.zip'
60+
name: Bits

.codecov.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
codecov:
2+
ci:
3+
- !appveyor # ignore CI builds by AppVeyor
4+
5+
coverage:
6+
status:
7+
project:
8+
default:
9+
target: auto
10+
threshold: 1%
11+
patch:
12+
default:
13+
target: auto
14+
threshold: 1%

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
* text=auto
2+
data/* binary
3+
src/* text=lf
4+
R/* text=lf

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# History files
2+
.Rhistory
3+
.Rapp.history
4+
5+
loo.Rproj
6+
7+
# Example code in package build process
8+
*-Ex.R
9+
# RStudio files
10+
.Rproj.user/
11+
.Rproj.user
12+
# produced vignettes
13+
vignettes/loo2-lfo_cache/*
14+
vignettes/loo2-non-factorizable_cache/*
15+
vignettes/*.html
16+
vignettes/*.pdf
17+
vignettes/loo2-non-factorizable_cache/*
18+
inst/doc
19+
20+
revdep/*
21+
tests/testthat/Rplots.pdf
22+
23+
cran-comments.md
24+
CRAN-RELEASE
25+
release-prep.R

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: r
2+
r:
3+
- release
4+
- devel
5+
cache: packages
6+
7+
r_github_packages:
8+
- r-lib/covr
9+
10+
r_build_args: '--no-build-vignettes'
11+
r_check_args: '--ignore-vignettes'
12+
warnings_are_errors: true
13+
14+
env:
15+
- _R_CHECK_FORCE_SUGGESTS_=false NOT_CRAN=true MAKEFLAGS=-j2
16+
17+
after_success:
18+
- Rscript -e 'covr::codecov(function_exclusions = c("convert\\_old*"), line_exclusions = list("R/zzz.R", "R/extract_log_lik.R", "R/psislw.R"))'

404.html

Lines changed: 167 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)