1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/ci/script.sh
2020-01-06 14:07:40 -05:00

13 lines
234 B
Bash

#!/bin/bash
# This script takes care of testing your crate
set -ex
# This is the test phase. We will only build if tests happened before.
main() {
cross build --target $TARGET
cross build --target $TARGET --release
}
main