Sha256: 7189300b0b7a6e3dae689044200b1459ccaab7b07db887ffda8b214bac09edfc

Contents?: true

Size: 463 Bytes

Versions: 2

Compression:

Stored size: 463 Bytes

Contents

#!/bin/bash

set -e

BUNDLE_PATH=/tmp/.bundle-$(basename $(pwd))
export BUNDLE_JOBS="${BUNDLE_JOBS:=4}"
if [ ! -z "$SNAP_CI" ]
then
  BUNDLE_PATH=$HOME/.bundle
fi

mkdir -p $BUNDLE_PATH
rm -rf bundle
ln -sf $BUNDLE_PATH bundle

export NOKOGIRI_USE_SYSTEM_LIBRARIES=1

while read line; do
  [[ -n ${SNAP_CI} || -n ${GO_SERVER_URL} ]] || echo -ne "Doing $((C++)) things...\r"
done < <(bundle check || bundle install --path vendor/bundle --clean)

echo
echo "Done!"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
snap_ci-parallel_tests-0.1.0 .init.sh
snap_ci-parallel_tests-0.0.3 .init.sh