mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
6 lines
292 B
Bash
6 lines
292 B
Bash
|
#!/bin/bash
|
||
|
echo "modifying files in 5s, ctrl+c to abort" && sleep 5
|
||
|
find ./* -name "Cargo.toml" -exec sed -i 's/, "simd"]/]/g' {} \;
|
||
|
find ./* -name "Cargo.toml" -exec sed -i 's/"simd"]/]/g' {} \;
|
||
|
sed -i 's/vek /#vek /g' ./Cargo.toml;
|
||
|
time cargo tarpaulin --skip-clean -v -- --test-threads=2;
|