forked from DOI-USGS/ncdfgeom
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df2bea3
commit 2fa8c54
Showing
6 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ docs | |
DISCLAIMER.md | ||
code.json | ||
appveyor.yml | ||
.github | ||
.github | ||
.gitlab-ci.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
variables: | ||
_R_CHECK_CRAN_INCOMING_: "false" | ||
_R_CHECK_FORCE_SUGGESTS_: "true" | ||
_R_CHECK_DONTTEST_EXAMPLES_: "false" | ||
APT_PKGS: "libudunits2-dev libgdal-dev libgeos-dev libproj-dev libcurl4-openssl-dev libssh2-1-dev libssl-dev libxml2-dev zlib1g-dev git p7zip-full" | ||
|
||
before_script: | ||
- wget --no-check-certificate -O /usr/local/share/ca-certificates/DOIRootCA2.crt https://raw.githubusercontent.com/dblodgett-usgs/hydrogeoenv/master/linux/DOIRootCA2.cer | ||
- chmod 644 /usr/local/share/ca-certificates/DOIRootCA2.crt && update-ca-certificates | ||
- apt-get update | ||
- apt-get install -y --no-install-recommends ${APT_PKGS} | ||
- apt-get install -y --no-install-recommends qpdf pandoc pandoc-citeproc | ||
- export PATH="/usr/local/lib/R/site-library/littler/examples/:${PATH}" | ||
- echo "options(Ncpus = $(nproc --all))" >> /usr/local/lib/R/etc/Rprofile.site | ||
- install2.r devtools | ||
- r -e 'devtools::install_dev_deps()' | ||
|
||
test: | ||
stage: test | ||
tags: | ||
- chs-shared | ||
image: code.chs.usgs.gov:5001/wma/hydrogeoenv:rocker-geospatial | ||
script: | ||
- r -e 'devtools::check(check_dir = ".")' | ||
- r -e 'capture.output(print(covr::coverage_to_list(covr::package_coverage(type = "all")), width = 20), file = "covr.txt", split = TRUE)' | ||
artifacts: | ||
paths: | ||
- "*.Rcheck" | ||
- "covr.txt" |
Empty file.
Empty file.
Empty file.
Empty file.