mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
eeafdfed3a
This reverts commit b3983c5451
.
8 lines
424 B
Bash
Executable File
8 lines
424 B
Bash
Executable File
#!/bin/bash
|
|
echo "modifying files in 5s, ctrl+c to abort" && sleep 5
|
|
rm -r target/debug/incremental/veloren_* || echo "all good" # TMP FIX FOR 2021-03-22-nightly
|
|
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;
|
|
export VELOREN_ASSETS="$(pwd)/assets";
|
|
time cargo tarpaulin --skip-clean -v -- --test-threads=2; |