Sha256: f54dda0db2d146fd3141d578f803d9e70dbbd26466c4ef538a834024d19a3d3e

Contents?: true

Size: 415 Bytes

Versions: 15

Compression:

Stored size: 415 Bytes

Contents

#!/bin/sh

RUBY_VERSIONS="2.7.7 3.0.5 3.1.3 3.2.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

15 entries across 15 versions & 1 rubygems

Version Path
wasmtime-25.0.2 ./ext/cargo-vendor/magnus-0.6.4/test
wasmtime-25.0.1 ./ext/cargo-vendor/magnus-0.6.4/test
wasmtime-25.0.0 ./ext/cargo-vendor/magnus-0.6.4/test
wasmtime-24.0.0 ./ext/cargo-vendor/magnus-0.6.4/test
wasmtime-23.0.2 ./ext/cargo-vendor/magnus-0.6.4/test
wasmtime-22.0.0 ./ext/cargo-vendor/magnus-0.6.4/test
wasmtime-21.0.1 ./ext/cargo-vendor/magnus-0.6.4/test
wasmtime-20.0.2 ./ext/cargo-vendor/magnus-0.6.4/test
wasmtime-20.0.0 ./ext/cargo-vendor/magnus-0.6.4/test
wasmtime-18.0.3 ./ext/cargo-vendor/magnus-0.6.2/test
wasmtime-17.0.1 ./ext/cargo-vendor/magnus-0.6.2/test
wasmtime-17.0.0 ./ext/cargo-vendor/magnus-0.6.2/test
wasmtime-16.0.0 ./ext/cargo-vendor/magnus-0.6.2/test
wasmtime-15.0.1 ./ext/cargo-vendor/magnus-0.6.2/test
wasmtime-15.0.0 ./ext/cargo-vendor/magnus-0.6.2/test