2020-07-24 00:42:20 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-07-27 01:58:14 +03:00
|
|
|
set -e
|
|
|
|
|
2020-07-24 00:42:20 +03:00
|
|
|
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
|
2020-09-04 22:18:53 +03:00
|
|
|
./import.sh --raw --map --city=london
|
2020-08-26 20:25:45 +03:00
|
|
|
./import.sh --raw --map --city=tel_aviv
|
2020-08-19 21:15:36 +03:00
|
|
|
./import.sh --raw --map --city=xian
|
2020-07-27 01:58:14 +03:00
|
|
|
|
|
|
|
cargo run --release --bin game -- --prebake
|
2020-08-03 19:28:10 +03:00
|
|
|
cargo run --release --bin game -- --smoketest
|
2020-08-22 01:49:28 +03:00
|
|
|
cargo run --release --bin game -- --check_proposals
|
2020-10-01 04:32:18 +03:00
|
|
|
|
|
|
|
# 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
|