You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
319 B
24 lines
319 B
#!/bin/bash |
|
|
|
set -e |
|
|
|
|
|
## build software |
|
rm -rf build |
|
mkdir build && cd build |
|
cmake .. -D BUILD_TESTING=ON |
|
cmake --build . |
|
|
|
## run tests |
|
ctest -V |
|
|
|
## run the executable |
|
./src/main \ |
|
../recordings/10732.pb \ |
|
../recordings/10740.pb \ |
|
../recordings/10742.pb \ |
|
grid.json |
|
|
|
echo "" |
|
echo "result written to grid.json" |
|
|
|
|