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