-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] move Solaris and valgrind test steps into scripts (#4503)
* [ci] move Solaris and valgrind test steps into scripts * Update .github/workflows/r_solaris.yml Co-authored-by: Nikita Titov <nekit94-08@mail.ru> * relatiev paths Co-authored-by: Nikita Titov <nekit94-08@mail.ru>
- Loading branch information
1 parent
16aa010
commit 926526c
Showing
4 changed files
with
18 additions
and
15 deletions.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
sh build-cran-package.sh || exit -1 | ||
|
||
apt-get install --no-install-recommends -y \ | ||
libcurl4-openssl-dev \ | ||
libxml2-dev \ | ||
libssl-dev | ||
|
||
log_file="rhub_logs.txt" | ||
Rscript -e "install.packages('rhub', dependencies = c('Depends', 'Imports', 'LinkingTo'), repos = 'https://cran.r-project.org', Ncpus = parallel::detectCores())" || exit -1 | ||
|
||
Rscript ./.ci/run_rhub_solaris_checks.R lightgbm_*.tar.gz $log_file || exit -1 |
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
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
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