mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
caccc654f4
* 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>
14 lines
229 B
Bash
Executable file
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
|