Skip to content

Commit 6e8dbac

Browse files
HyukjinKwondongjoon-hyun
authored andcommitted
[SPARK-46425][INFRA] Pin the bundler version in CI
Currently documentation build is broken: https://github.com/apache/spark/actions/runs/7226413850/job/19691970695 ``` ... ERROR: Error installing bundler: The last version of bundler (>= 0) to support your Ruby & RubyGems was 2.4.22. Try installing it with `gem install bundler -v 2.4.22` bundler requires Ruby version >= 3.0.0. The current ruby version is 2.7.0.0. ``` This PR uses the suggestion. To recover the CI. No, dev-only. CI in this PR verify it. No. Closes #44376 from HyukjinKwon/SPARK-46425. Authored-by: Hyukjin Kwon <[email protected]> Signed-off-by: Hyukjin Kwon <[email protected]> (cherry picked from commit d0da117) Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent f0e5fc9 commit 6e8dbac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ jobs:
687687
Rscript -e "install.packages(c('devtools', 'testthat', 'knitr', 'rmarkdown', 'markdown', 'e1071', 'roxygen2', 'ggplot2', 'mvtnorm', 'statmod'), repos='https://cloud.r-project.org/')"
688688
Rscript -e "devtools::install_version('pkgdown', version='2.0.1', repos='https://cloud.r-project.org')"
689689
Rscript -e "devtools::install_version('preferably', version='0.4', repos='https://cloud.r-project.org')"
690-
gem install bundler
690+
gem install bundler -v 2.4.22
691691
cd docs
692692
bundle install
693693
- name: R linter

0 commit comments

Comments
 (0)