Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rdbnomics
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dbnomics
rdbnomics
Commits
cc323478
Commit
cc323478
authored
4 years ago
by
Sébastien Galais
Browse files
Options
Downloads
Patches
Plain Diff
Update .gitlab-ci.yml for libs (curl, data.table).
parent
52b69b75
No related branches found
No related tags found
No related merge requests found
Pipeline
#142658
passed with stage
in 5 minutes and 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+7
-1
7 additions, 1 deletion
.gitlab-ci.yml
with
7 additions
and
1 deletion
.gitlab-ci.yml
+
7
−
1
View file @
cc323478
variables
:
_R_CHECK_CRAN_INCOMING_
:
"
false"
_R_CHECK_FORCE_SUGGESTS_
:
"
true"
APT_PKGS
:
"
libcurl4-openssl-dev
libssh2-1-dev
libssl-dev
libxml2-dev
zlib1g-dev
git"
before_script
:
-
apt-get update
-
apt-get install -y --no-install-recommends ${APT_PKGS}
-
apt-get install -y --no-install-recommends qpdf pandoc pandoc-citeproc
build_markdown_v1
:
# to test R Markdown v1 without pandoc, must install knitr and rmarkdown
...
...
@@ -21,7 +27,7 @@ build_cran:
build_version_latest
:
image
:
rocker/r-ver:latest
script
:
-
R -e 'install.packages(c("curl", "jsonlite", "data.table", "tinytest"))'
-
R -e 'install.packages(c("curl", "jsonlite", "data.table", "tinytest"
, "knitr", "rmarkdown"
))'
-
R CMD build .
-
PKG_FILE_NAME=$(ls -1t *.tar.gz | head -n 1)
-
R CMD check "${PKG_FILE_NAME}" --no-manual --as-cran
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment