Sha256: 2c58fb4789bc6882f88b3b5df4ee48007e517849597893038e4dd490f6a72336
Contents?: true
Size: 421 Bytes
Versions: 4
Compression:
Stored size: 421 Bytes
Contents
#!/bin/sh RUBY_VERSIONS="2.7.8 3.0.6 3.1.4 3.2.2 3.3.0" ERRORS="" for VERSION in $RUBY_VERSIONS; do eval "$(rbenv init - sh)" rbenv shell $VERSION printf "testing Ruby $VERSION..." if OUTPUT=$(env RUBY="$(rbenv which ruby)" cargo +1.61 test --workspace 2>&1); then echo ✅ else ERRORS="$ERRORS\n\n\n$VERSION\n\n$OUTPUT" echo ❌ fi done if [ -n "$ERRORS" ]; then printf "$ERRORS" exit 1 fi
Version data entries
4 entries across 4 versions & 1 rubygems