From dcf9e62e968dd26f87616480f62f50a470316188 Mon Sep 17 00:00:00 2001 From: Andrew Harvey Date: Wed, 5 May 2021 16:20:25 +1000 Subject: include debug output in CI and increase memory allocation --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b967400..cd46e5a 100644 --- a/Makefile +++ b/Makefile @@ -34,10 +34,12 @@ dist/vicmap-osm.geojson: data/vicmap.geojson ./bin/vicmap2osm.js $< $@ dist/vicmap-osm-uniq.geojson: dist/vicmap-osm.geojson - node --max-old-space-size=4096 bin/reduceDuplicates.js $< $@ + mkdir -p debug/reduceDuplicates + node --max_old_space_size=4096 ./bin/reduceDuplicates.js --debug $< $@ dist/vicmap-osm-uniq-flats.geojson: dist/vicmap-osm-uniq.geojson - ./bin/reduceOverlap.js $< $@ + mkdir -p debug/reduceOverlap + node --max_old_space_size=4096 ./bin/reduceOverlap.js --debug $< $@ loadPgOSM: dist/vicmap-osm.geojson ogr2ogr -f PostgreSQL PG: $< -lco UNLOGGED=YES -nln vm_osm -- cgit v1.2.3