mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
6b72ca2655
Added test:isolate task that runs tests isolated but in parallel.
19 lines
340 B
Bash
Executable file
19 lines
340 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ueo pipefail
|
|
|
|
export LANG=C.UTF-8 LANGUAGE=C.UTF-8
|
|
|
|
echo "--- updating rubygems"
|
|
gem update --system -N
|
|
|
|
echo "--- system details"
|
|
uname -a
|
|
gem env
|
|
bundle --version
|
|
|
|
echo "--- bundle install"
|
|
bundle install --jobs=7 --retry=3 --without tools maintenance deploy
|
|
|
|
echo "+++ bundle exec rake"
|
|
bundle exec rake ${RAKE_TASK:-}
|