mirror of
https://github.com/inspec/inspec
synced 2025-02-16 22:18:38 +00:00
14 lines
234 B
Bash
Executable file
14 lines
234 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ueo pipefail
|
|
|
|
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
|