abstreet/data/regen.sh

21 lines
656 B
Bash
Raw Normal View History

#!/bin/bash
2020-07-27 01:58:14 +03:00
set -e
rm -fv data/system/maps/huge_seattle.bin data/input/raw_maps/huge_seattle.bin data/input/seattle/popdat.bin
2020-07-27 01:58:14 +03:00
./import.sh --raw --map --scenario
./import.sh --raw --map --city=berlin
./import.sh --raw --map --city=krakow
./import.sh --raw --map --city=london
2020-08-26 20:25:45 +03:00
./import.sh --raw --map --city=tel_aviv
./import.sh --raw --map --city=xian
2020-07-27 01:58:14 +03:00
cargo run --release --bin game -- --prebake
cargo run --release --bin game -- --smoketest
cargo run --release --bin game -- --check_proposals
# This is cheap enough to do before every single commit, but since we don't
# have presubmit tests, it's fine to just run it here.
cargo run --bin map_tests