Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: restructure CI #230

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
install all deps
jameslamb committed Jan 12, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 62e036196de019dfed7712aa77601bbfc4bce0af
15 changes: 15 additions & 0 deletions .ci/install-deps.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
install.packages( # nolint: undesirable_function
pkgs = c(
"assertthat"
, "data.table"
, "futile.logger"
, "httr"
, "knitr"
, "purrr"
, "rmarkdown"
, "stringr"
, "uuid"
)
, repos = "https://cran.r-project.org"
, Ncpus = 2
)
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ jobs:
- uses: r-lib/actions/setup-pandoc@v2
- name: build package
run: |
Rscript -e "install.packages(c('rmarkdown', 'knitr'), repos = 'https://cran.r-project.org')"
Rscript ./.ci/install-deps.R
./.ci/build-package.sh
mkdir -p ./artifacts
mv ./uptasticsearch*.tar.gz ./artifacts