From 692bc962a19ede5a09632796a86e598af44c9055 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Sun, 26 May 2024 13:44:20 +0200 Subject: [PATCH] Implement end-to-end benchmark --- scripts/ci/run_benchmarks.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/ci/run_benchmarks.sh b/scripts/ci/run_benchmarks.sh index 99b8a5bc4..639fa2da3 100755 --- a/scripts/ci/run_benchmarks.sh +++ b/scripts/ci/run_benchmarks.sh @@ -22,10 +22,11 @@ function run_benchmarks_for_folder { BINARIES_FOLDER="$FOLDER/build" wget http://download.geofabrik.de/europe/germany/berlin-latest.osm.pbf - $BINARIES_FOLDER/osrm-extract -p ./profiles/car.lua ./berlin-latest.osm.pbf - $BINARIES_FOLDER/osrm-partition ./berlin-latest.osrm - $BINARIES_FOLDER/osrm-customize ./berlin-latest.osrm - $BINARIES_FOLDER/osrm-routed --algorithm mld /data/berlin-latest.osrm & + echo "PWD: $(pwd)" + $BINARIES_FOLDER/osrm-extract -p $(pwd)/profiles/car.lua $(pwd)/berlin-latest.osm.pbf + $BINARIES_FOLDER/osrm-partition $(pwd)/berlin-latest.osrm + $BINARIES_FOLDER/osrm-customize $(pwd)/berlin-latest.osrm + $BINARIES_FOLDER/osrm-routed --algorithm mld $(pwd)/berlin-latest.osrm & OSRM_ROUTED_PID=$! # TODO: save results