Sha256: 5f0a1c4d99299dd4023032037f7a27f4a43bd6efa0ee7f94c6f10d4f604eb99d
Contents?: true
Size: 382 Bytes
Versions: 4
Compression:
Stored size: 382 Bytes
Contents
#!/bin/bash function compile_and_test { bundle install rake clobber rake compile --silent --quiet rake test } echo "Testing without NMATRIX or NARRAY...\n\n" unset NMATRIX unset NARRAY compile_and_test echo "Testing with NMATRIX=1...\n\n" export NMATRIX=1 compile_and_test unset NMATRIX echo "Testing with NARRAY=1...\n\n" export NARRAY=1 compile_and_test unset NARRAY
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
gsl-2.1.0.3 | test.sh |
gsl-2.1.0.2 | test.sh |
gsl-2.1.0.1 | test.sh |
gsl-2.1.0 | test.sh |