blob: ee1a96272b63420be5b4a6e0e82842fd6a63ddc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
#
# This script runs a passed in command, but first setups up the bundler caching on the repo
set -ue
export USER="root"
export LANG=C.UTF-8 LANGUAGE=C.UTF-8
echo "--- bundle install"
# we need the ruby 2.7 version of bundler, the 2.5/2.6 versions cannot pull our Gemfile correctly
gem update --system
gem install bundler
bundle config --local path vendor/bundle
bundle install --jobs=7 --retry=3
echo "+++ bundle exec task"
bundle exec $@
|