diff --git a/.forgejo/workflows/map-generator.yml b/.forgejo/workflows/map-generator.yml index e18a2d55c..7a1fe9803 100644 --- a/.forgejo/workflows/map-generator.yml +++ b/.forgejo/workflows/map-generator.yml @@ -251,6 +251,7 @@ jobs: run: | cd /media/4tbexternal/comaps-init/ cp tools/unix/maps/settings.sh.prod tools/unix/maps/settings.sh + echo "hi" ./tools/unix/maps/generate_subways.sh update-tiger: @@ -276,9 +277,21 @@ jobs: ca-certificates \ qt6-base-dev \ qt6-positioning-dev \ + libc++-dev \ + libfreetype-dev \ + libglvnd-dev \ + libgl1-mesa-dev \ + libharfbuzz-dev \ + libicu-dev \ libqt6svg6-dev \ libqt6positioning6-plugins \ libqt6positioning6 \ + libsqlite3-dev \ + libxrandr-dev \ + libxinerama-dev \ + libxcursor-dev \ + libxi-dev \ + zlib1g-dev \ python3 \ python3-pip \ git \ diff --git a/tools/unix/maps/generate_subways.sh b/tools/unix/maps/generate_subways.sh index 5e78d896b..7f7c6fb42 100755 --- a/tools/unix/maps/generate_subways.sh +++ b/tools/unix/maps/generate_subways.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -e -u -o pipefail - +echo "1" # Generate subways.transit.json file consumed by the maps generator. # Inputs: # - OSM planet in pbf format @@ -11,7 +11,7 @@ set -e -u -o pipefail source "$(dirname "$0")/helper_settings.sh" source "$REPO_PATH/tools/unix/helper_python.sh" - +echo "2" # Parameters for the process_subways.sh script: export PLANET="$PLANET_PBF" export SKIP_PLANET_UPDATE="1" @@ -38,8 +38,8 @@ ls -al ls -al source_data sed -i 's/# Updating the planet-metro file/pwd && ls -al/g' ./scripts/process_subways.sh - -./scripts/process_subways.sh 2>&1 | tee "$SUBWAYS_LOG" +echo "disabled!" +#./scripts/process_subways.sh 2>&1 | tee "$SUBWAYS_LOG" popd # Make render.html available for map visualization on the web