inspec/.expeditor/buildkite/wwwrelease.sh
Sonu Saha caccc654f4
CFINSPEC-553: Fix failing verify pipeline builds on ruby 3.0 (#6378) (#6453)
* bundle install without kitchen group from Gemfile as verify pipeline is breaking for ruby 3.0 as Chef 18 requires to be work with ruby 3.1. In future we will be removing the support for ruby 3.0 as Chef 18 never released with ruby 3.0



* Removes all excluded groups from the bundle config set which was removed from the Gemfile.



* Exclude the gem dependencies for kitchen for omnibus builds



* Exclude the kitchen dependencies on windows platform too

Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
Co-authored-by: Vasundhara Jagdale <vasundhara.jagdale@chef.io>
2023-02-24 19:03:59 +05:30

14 lines
229 B
Bash
Executable file

#!/bin/bash
exit 0 # don't do this quite yet...
set -ue
echo "--- bundle install"
cd www
bundle config set --local without deploy
bundle install --jobs=7 --retry=3
echo "+++ bundle exec rake"
bundle exec rake www V=1 PUSH=1