Sha256: 0f3af15d035a7ebbfd27ba871623ce98697395472a899b871325d901c3817f93
Contents?: true
Size: 506 Bytes
Versions: 1
Compression:
Stored size: 506 Bytes
Contents
#!/usr/bin/env bash set -e echo "Installing lib from rubygems.org ${LIB_VERSION} ..." set +e ATTEMPT=1 while [ $ATTEMPT -lt 10 ]; do echo "Attempt ${ATTEMPT} ..." bundle install --without production --binstubs gem install vgs_api_client -v ${LIB_VERSION} if [[ $? == 0 ]]; then echo "Installed ${LIB_VERSION}" break fi ATTEMPT=$((ATTEMPT+1)) sleep 5 done set -e sleep 1000000 echo "Running tests" bundle install --without production --binstubs bundle exec rspec ./spec/*.rb
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vgs_api_client-0.0.1.alpha202204211337 | scripts/test-e2e/run.sh |