-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #237 from cvvergara/refining-sdg11-chapter
Refs/heads/refining sdg11 chapter
- Loading branch information
Showing
15 changed files
with
666 additions
and
588 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/bin/bash | ||
# ------------------------------------------------------------------------------ | ||
# /*PGR-GNU***************************************************************** | ||
# File: update_locale.sh | ||
# Copyright (c) 2021 pgRouting developers | ||
# Mail: [email protected] | ||
# ------ | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation; either version 2 of the License, or | ||
# (at your option) any later version. | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
# ********************************************************************PGR-GNU*/ | ||
# ------------------------------------------------------------------------------ | ||
|
||
DIR=$(git rev-parse --show-toplevel) | ||
|
||
pushd "${DIR}" > /dev/null || exit 1 | ||
|
||
mkdir -p build | ||
pushd build > /dev/null || exit 1 | ||
cmake -DLOCALE=ON .. | ||
|
||
make locale | ||
popd > /dev/null || exit 1 | ||
|
||
# List all the files that needs to be committed in build/docs/locale_changes.txt | ||
awk '/^Update|^Create/{print $2}' build/docs/locale_changes.txt > build/docs/locale_changes_po.txt # .po files | ||
cp build/docs/locale_changes_po.txt build/docs/locale_changes_po_pot.txt | ||
perl -ne '/\/en\// && print' build/docs/locale_changes_po.txt | \ | ||
perl -pe 's/(.*)en\/LC_MESSAGES(.*)/$1pot$2t/' >> build/docs/locale_changes_po_pot.txt # .pot files | ||
|
||
# Remove obsolete entries #~ from .po files | ||
bash .github/scripts/remove_obsolete_entries.sh | ||
|
||
while read -r f; do git add "$f"; done < build/docs/locale_changes_po_pot.txt | ||
|
||
popd > /dev/null || exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
name: Update Locale | ||
|
||
# This action runs: | ||
# - When this file changes | ||
# - When changes on documentation (doc) | ||
# - When is triggered manually | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
update-locale: | ||
name: Update Locale | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Get postgres version | ||
run: | | ||
sudo service postgresql start | ||
pgver=$(psql --version | grep -Po '(?<=psql \(PostgreSQL\) )[^;]+(?=\.\d+ \()') | ||
echo "PGVER=${pgver}" >> $GITHUB_ENV | ||
echo "PGIS=3" >> $GITHUB_ENV | ||
- name: Extract branch name and commit hash | ||
run: | | ||
branch=${GITHUB_REF#refs/heads/} | ||
git_hash=$(git rev-parse --short "$GITHUB_SHA") | ||
echo "GIT_HASH=$git_hash" >> $GITHUB_ENV | ||
- name: Add PostgreSQL APT repository | ||
run: | | ||
sudo apt-get install curl ca-certificates gnupg | ||
curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - | ||
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ \ | ||
$(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' | ||
- name: Install python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y osm2pgrouting \ | ||
postgresql-${PGVER}-postgis-${PGIS} \ | ||
postgresql-${PGVER}-postgis-${PGIS}-scripts \ | ||
postgresql-${PGVER}-pgrouting | ||
python -m pip install --upgrade pip | ||
pip install -r REQUIREMENTS.txt | ||
pip list | ||
- name: Configure | ||
run: | | ||
service postgresql status | ||
sudo service postgresql start | ||
service postgresql status | ||
sudo -u postgres createdb -p ${POSTGRES_PORT} setup | ||
sudo -u postgres psql -c 'CREATE ROLE "runner" SUPERUSER CREATEDB CREATEROLE INHERIT LOGIN PASSWORD $$runner$$;' -d setup | ||
echo :5432:*:runner:runner >> .pgpass | ||
sudo -u postgres psql -c 'CREATE ROLE "user" SUPERUSER CREATEDB CREATEROLE INHERIT LOGIN PASSWORD $$user$$;' -d setup | ||
echo :5432:*:user:user >> .pgpass | ||
mkdir build | ||
cd build | ||
cmake -DLOCALE=ON .. | ||
env: | ||
POSTGRES_HOST: localhost | ||
POSTGRES_PORT: 5432 | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_DB: setup | ||
|
||
- name: Initialize mandatory git config | ||
run: | | ||
git config user.name "github-actions[bot]" | ||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
- name: Update locale | ||
run: | | ||
bash .github/scripts/update_locale.sh | ||
# Add the files, commit and push | ||
git diff --staged --quiet || git commit -m "Update locale: commit ${{ env.GIT_HASH }}" | ||
git restore . # Remove the unstaged changes before rebasing | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,6 @@ set(PGR_WORKSHOP_FILES | |
sdg3-health.rst | ||
sdg7-energy.rst | ||
sdg11-cities.rst | ||
appendix.rst | ||
) | ||
|
||
|
||
|
Oops, something went wrong.