pre.sh 359 B

123456789101112131415
  1. #!/usr/bin/env bash
  2. set -o errexit
  3. set -o pipefail
  4. # shellcheck disable=SC1091
  5. source /etc/profile.d/rvm.sh # ensure RVM is loaded
  6. bundle config set --local frozen 'true'
  7. bundle config set --local path 'vendor'
  8. bundle install -j "$(nproc)"
  9. yarn install
  10. yarn cypress:install
  11. bundle exec ruby .gitlab/configure_environment.rb
  12. bundle exec rake zammad:db:init