Files
solana/ci/test-cuda.sh

14 lines
206 B
Bash
Raw Normal View History

2018-05-21 23:02:54 -07:00
#!/bin/bash -e
2018-05-27 18:19:07 -07:00
cd "$(dirname "$0")/.."
2018-05-21 23:02:54 -07:00
./fetch-perf-libs.sh
2018-05-21 23:02:54 -07:00
export LD_LIBRARY_PATH=/usr/local/cuda/lib64
export PATH=$PATH:/usr/local/cuda/bin
2018-05-21 23:02:54 -07:00
2018-05-28 19:45:47 -07:00
export RUST_BACKTRACE=1
2018-05-21 23:02:54 -07:00
cargo test --features=cuda
exit 0