File: update-gemfile-lock

package info (click to toggle)
ruby-in-parallel 1.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228 kB
  • sloc: ruby: 487; sh: 11; makefile: 5
file content (7 lines) | stat: -rwxr-xr-x 403 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
#!/usr/bin/env bash

# The container tag should closely match what is used in the testing and releasing GitHub Actions.
docker run -it --rm \
  -v $(pwd):/app \
  ruby:3.2-slim-bullseye \
  /bin/bash -c 'apt-get update -qq && apt-get install -y --no-install-recommends git make netbase && cd /app && gem install bundler && bundle install --jobs 3 && bundle update; echo "LOCK_FILE_UPDATE_EXIT_CODE=$?"'