mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
f5d0d93121
Signed-off-by: Ryan Davis <zenspider@chef.io>
16 lines
272 B
Bash
Executable file
16 lines
272 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ueo pipefail
|
|
|
|
export LANG=C.UTF-8 LANGUAGE=C.UTF-8
|
|
|
|
echo "--- system details"
|
|
uname -a
|
|
ruby -v
|
|
bundle --version
|
|
|
|
echo "--- bundle install"
|
|
bundle install --jobs=7 --retry=3 --without tools maintenance deploy
|
|
|
|
echo "+++ bundle exec rake"
|
|
bundle exec rake
|