Add in-tree buildkite pipeline

This commit is contained in:
Michael Vines
2018-05-21 23:02:54 -07:00
parent 2786357082
commit 34514d65bc
7 changed files with 97 additions and 0 deletions

17
ci/test-cuda.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash -e
cd $(dirname $0)/..
if [[ -z "$libcuda_verify_ed25519_URL" ]]; then
echo libcuda_verify_ed25519_URL undefined
exit 1
fi
export LD_LIBRARY_PATH=/usr/local/cuda/lib64
export PATH=$PATH:/usr/local/cuda/bin
curl -X GET -o libcuda_verify_ed25519.a "$libcuda_verify_ed25519_URL"
source $HOME/.cargo/env
cargo test --features=cuda
exit 0