Sha256: 170c7c369e8767261aa6fc55740ea090a6b8e8d4600ff8ef96e02c308ed7618d

Contents?: true

Size: 413 Bytes

Versions: 3

Compression:

Stored size: 413 Bytes

Contents

#!/bin/sh

RUBY_VERSIONS="2.6.9 2.7.5 3.0.3 3.1.0 3.2.0-dev"
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.54 test 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

3 entries across 3 versions & 1 rubygems

Version Path
wasmtime-5.0.0 ./ext/cargo-vendor/magnus-0.4.4/test
wasmtime-0.4.1 ./ext/cargo-vendor/magnus-0.4.4/test
wasmtime-0.4.0 ./ext/cargo-vendor/magnus-0.4.3/test