nalgebra/ci/build.sh
2018-05-26 22:07:57 +02:00

8 lines
241 B
Bash

#! /bin/bash
if [ -z NO_STD ]; then
cargo build --verbose --features "${CARGO_FEATURES}";
else
cargo install xargo;
xargo build --verbose --no-default-features --target=x86_64-unknown-linux-gnu --features "${CARGO_FEATURES}";
fi