This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts-site.git
The following commit(s) were added to refs/heads/master by this push: new a1717e633 Uses fixed version of Ruby 2.7.6 and upgrades Bundler to 2.3.13 a1717e633 is described below commit a1717e63346024cc44f4ad6fc7041847e8066c4f Author: Lukasz Lenart <lukaszlen...@apache.org> AuthorDate: Thu Oct 6 10:55:27 2022 +0200 Uses fixed version of Ruby 2.7.6 and upgrades Bundler to 2.3.13 --- .gitignore | 1 + Gemfile.lock | 70 +++++++++++++++++++++++++++++++++++++----------------------- Jenkinsfile | 4 +++- 3 files changed, 47 insertions(+), 28 deletions(-) diff --git a/.gitignore b/.gitignore index 15690204f..5aa5ce38d 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ content target .bundle .jekyll-metadata +.jekyll-cache _site .project .settings/ diff --git a/Gemfile.lock b/Gemfile.lock index 9ad60d1bc..6a10d368d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,53 +1,69 @@ GEM remote: https://rubygems.org/ specs: - addressable (2.7.0) - public_suffix (>= 2.0.2, < 5.0) + addressable (2.8.1) + public_suffix (>= 2.0.2, < 6.0) colorator (1.1.0) - ffi (1.11.1) + concurrent-ruby (1.1.10) + em-websocket (0.5.3) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0) + eventmachine (1.2.7) + ffi (1.15.5) forwardable-extended (2.6.0) - jekyll (3.6.3) + http_parser.rb (0.8.0) + i18n (1.12.0) + concurrent-ruby (~> 1.0) + jekyll (4.2.2) addressable (~> 2.4) colorator (~> 1.0) - jekyll-sass-converter (~> 1.0) - jekyll-watch (~> 1.1) - kramdown (~> 1.14) + em-websocket (~> 0.5) + i18n (~> 1.0) + jekyll-sass-converter (~> 2.0) + jekyll-watch (~> 2.0) + kramdown (~> 2.3) + kramdown-parser-gfm (~> 1.0) liquid (~> 4.0) - mercenary (~> 0.3.3) + mercenary (~> 0.4.0) pathutil (~> 0.9) - rouge (>= 1.7, < 3) + rouge (~> 3.0) safe_yaml (~> 1.0) - jekyll-sass-converter (1.5.2) - sass (~> 3.4) - jekyll-watch (1.5.1) + terminal-table (~> 2.0) + jekyll-sass-converter (2.2.0) + sassc (> 2.0.1, < 3.0) + jekyll-watch (2.2.1) listen (~> 3.0) - json (2.1.0) - kramdown (1.17.0) + json (2.6.2) + kramdown (2.4.0) + rexml + kramdown-parser-gfm (1.1.0) + kramdown (~> 2.0) liquid (4.0.3) - listen (3.2.0) + listen (3.7.1) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) - mercenary (0.3.6) + mercenary (0.4.0) pathutil (0.16.2) forwardable-extended (~> 2.6) - public_suffix (4.0.1) - rb-fsevent (0.10.3) - rb-inotify (0.10.0) + public_suffix (5.0.0) + rb-fsevent (0.11.2) + rb-inotify (0.10.1) ffi (~> 1.0) - rouge (2.2.1) + rexml (3.2.5) + rouge (3.30.0) safe_yaml (1.0.5) - sass (3.7.4) - sass-listen (~> 4.0.0) - sass-listen (4.0.0) - rb-fsevent (~> 0.9, >= 0.9.4) - rb-inotify (~> 0.9, >= 0.9.7) + sassc (2.4.0) + ffi (~> 1.9) + terminal-table (2.0.0) + unicode-display_width (~> 1.1, >= 1.1.1) + unicode-display_width (1.8.0) PLATFORMS - ruby + x86_64-darwin-21 DEPENDENCIES jekyll json BUNDLED WITH - 2.1.4 + 2.3.13 diff --git a/Jenkinsfile b/Jenkinsfile index 937ecfd54..379a744ca 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,8 +22,10 @@ pipeline { echo Generiting a new version of website curl -sSL https://get.rvm.io | bash -s -- --path ${RUBY_PATH} + rvm install 2.7.6 + mkdir -p ${GEM_HOME} - gem install --install-dir ${GEM_HOME} bundler -v '2.1.4' + gem install --install-dir ${GEM_HOME} bundler -v '2.3.13' bundle install --path ${GEM_HOME} bundle