action: cache downloaded dependencies

This commit is contained in:
Sarah Hoffmann
2020-10-28 11:54:37 +01:00
parent bd04c49bc1
commit 4147e04319
3 changed files with 52 additions and 20 deletions

View File

@@ -11,8 +11,20 @@ jobs:
with:
submodules: true
- uses: ./.github/actions/setup-postgresql
- name: Get Date
id: get-date
run: |
echo "::set-output name=date::$(/bin/date -u "+%Y%W")"
shell: bash
- uses: actions/cache@v2
with:
path: |
data/country_osm_grid.sql.gz
monaco-latest.osm.pbf
key: nominatim-data-${{ steps.get-date.outputs.date }}
- uses: ./.github/actions/setup-postgresql
- uses: ./.github/actions/build-nominatim
- name: Install test prerequsites
@@ -39,19 +51,35 @@ jobs:
with:
submodules: true
- name: Get Date
id: get-date
run: |
echo "::set-output name=date::$(/bin/date -u "+%Y%W")"
shell: bash
- uses: actions/cache@v2
with:
path: |
data/country_osm_grid.sql.gz
monaco-latest.osm.pbf
key: nominatim-data-${{ steps.get-date.outputs.date }}
- uses: ./.github/actions/setup-postgresql
- uses: ./.github/actions/build-nominatim
- name: Download test extract
run: wget --no-verbose https://download.geofabrik.de/europe/monaco-latest.osm.pbf
- name: Create configuration
run: |
echo '<?php' > settings/local.php
echo " @define('CONST_Pyosmium_Binary', '/usr/lib/python3-pyosmium/pyosmium-get-changes');" >> settings/local.php
working-directory: build
- name: Download import data
run: |
if [ ! -f monaco-latest.osm.pbf ]; then
wget --no-verbose https://download.geofabrik.de/europe/monaco-latest.osm.pbf
fi
shell: bash
- name: Import
run: php ./utils/setup.php --osm-file ../monaco-latest.osm.pbf --osm2pgsql-cache 500 --all
working-directory: build