X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/398d8db898e976149136d5ca675e3c08dee6ee76..77f46bbe29313690e93c4ef9147bc6c0d7597470:/cookbooks/foundation/recipes/owg.rb?ds=sidebyside diff --git a/cookbooks/foundation/recipes/owg.rb b/cookbooks/foundation/recipes/owg.rb index 47a835e9a..fb9aca201 100644 --- a/cookbooks/foundation/recipes/owg.rb +++ b/cookbooks/foundation/recipes/owg.rb @@ -21,18 +21,26 @@ include_recipe "apache" include_recipe "git" package %w[ - ruby - ruby-dev + gcc + g++ + make + ruby2.7 + ruby2.7-dev + libssl-dev zlib1g-dev + pkg-config ] gem_package "bundler" do - version "1.17.3" + package_name "bundler" + version "~> 2.2.22" + gem_binary "gem2.7" + options "--format-executable" end git "/srv/operations.osmfoundation.org" do action :sync - repository "git://github.com/openstreetmap/owg-website.git" + repository "https://github.com/openstreetmap/owg-website.git" depth 1 user "root" group "root" @@ -40,7 +48,7 @@ git "/srv/operations.osmfoundation.org" do end directory "/srv/operations.osmfoundation.org/_site" do - mode 0o755 + mode "755" owner "nobody" group "nogroup" end @@ -48,14 +56,14 @@ end # Workaround https://github.com/jekyll/jekyll/issues/7804 # by creating a .jekyll-cache folder directory "/srv/operations.osmfoundation.org/.jekyll-cache" do - mode 0o755 + mode "755" owner "nobody" group "nogroup" end execute "/srv/operations.osmfoundation.org/Gemfile" do action :nothing - command "bundle install --deployment" + command "bundle2.7 install --deployment" cwd "/srv/operations.osmfoundation.org" user "root" group "root" @@ -63,8 +71,7 @@ execute "/srv/operations.osmfoundation.org/Gemfile" do end execute "/srv/operations.osmfoundation.org" do - action :nothing - command "bundle exec jekyll build --trace --baseurl=https://operations.osmfoundation.org" + command "bundle2.7 exec jekyll build --trace" cwd "/srv/operations.osmfoundation.org" user "nobody" group "nogroup"