Reduce the number of jobs.
This commit is contained in:
parent
2fdc82306a
commit
8e542d6cc2
|
@ -6,13 +6,7 @@ rust:
|
|||
- stable
|
||||
|
||||
env:
|
||||
- CARGO_FEATURES=""
|
||||
- CARGO_FEATURES="arbitrary"
|
||||
- CARGO_FEATURES="mint"
|
||||
- CARGO_FEATURES="alloc"
|
||||
- CARGO_FEATURES="serde-serialize"
|
||||
- CARGO_FEATURES="abomonation-serialize"
|
||||
- CARGO_FEATURES="debug arbitrary mint serde-serialize abomonation-serialize"
|
||||
- CARGO_FEATURE_SYSTEM_NETLIB=1 CARGO_FEATURE_EXCLUDE_LAPACKE=1 CARGO_FEATURE_EXCLUDE_CBLAS=1
|
||||
- NO_STD=1 CARGO_FEATURES=""
|
||||
- NO_STD=1 CARGO_FEATURES="alloc"
|
||||
|
||||
|
|
|
@ -1,7 +1,14 @@
|
|||
#! /bin/bash
|
||||
|
||||
if [ -z NO_STD ]; then
|
||||
cargo build --verbose --features "${CARGO_FEATURES}";
|
||||
cargo build --verbose;
|
||||
cargo build --verbose --features "arbitrary";
|
||||
cargo build --verbose --features "mint";
|
||||
cargo build --verbose --features "alloc";
|
||||
cargo build --verbose --features "serde-serialize";
|
||||
cargo build --verbose --features "abomonation-serialize";
|
||||
cargo build --verbose --features "debug";
|
||||
cargo build --verbose --features "debug arbitrary mint serde-serialize abomonation-serialize";
|
||||
else
|
||||
cargo install xargo;
|
||||
xargo build --verbose --no-default-features --target=x86_64-unknown-linux-gnu --features "${CARGO_FEATURES}";
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
#! /bin/bash
|
||||
|
||||
if [ -z NO_STD ]; then
|
||||
cargo test --verbose ${CARGO_FEATURES};
|
||||
|
||||
if [ -z CARGO_FEATURES ]; then
|
||||
export CARGO_FEATURE_SYSTEM_NETLIB=1 CARGO_FEATURE_EXCLUDE_LAPACKE=1 CARGO_FEATURE_EXCLUDE_CBLAS=1
|
||||
cd nalgebra-lapack; cargo test --verbose;
|
||||
fi
|
||||
cargo test --verbose;
|
||||
cargo test --verbose "debug arbitrary mint serde-serialize abomonation-serialize";
|
||||
cd nalgebra-lapack; cargo test --verbose;
|
||||
fi
|
Loading…
Reference in New Issue