Recupération configuration #6
Workflow file for this run
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
name: test_install_modules | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- test/ci | |
pull_request: | |
branches: | |
- main | |
- test/ci | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: "Debian 11" | |
python-version: "3.9" | |
postgres-version: 13 | |
postgis-version: 3.2 | |
name: ${{ matrix.name }} | |
services: | |
postgres: | |
image: postgis/postgis:${{ matrix.postgres-version }}-${{ matrix.postgis-version }} | |
env: | |
POSTGRES_DB: geonature2db | |
POSTGRES_PASSWORD: geonatpasswd | |
POSTGRES_USER: geonatadmin | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- name: Add postgis_raster database extension | |
if: ${{ matrix.postgis-version >= 3 }} | |
run: | | |
psql -h localhost -U geonatadmin -d geonature2db -tc 'CREATE EXTENSION "postgis_raster";' | |
env: | |
PGPASSWORD: geonatpasswd | |
- name: Add database extensions | |
run: | | |
psql -h localhost -U geonatadmin -d geonature2db -tc 'CREATE EXTENSION "hstore";' | |
psql -h localhost -U geonatadmin -d geonature2db -tc 'CREATE EXTENSION "uuid-ossp";' | |
psql -h localhost -U geonatadmin -d geonature2db -tc 'CREATE EXTENSION "pg_trgm";' | |
psql -h localhost -U geonatadmin -d geonature2db -tc 'CREATE EXTENSION "unaccent";' | |
psql -h localhost -U geonatadmin -d geonature2db -tc 'CREATE EXTENSION "ltree";' | |
env: | |
PGPASSWORD: geonatpasswd | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install GDAL | |
run: | | |
sudo apt update | |
sudo apt install -y libgdal-dev | |
- name: Install geonature | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install https://github.com/PnX-SI/GeoNature/archive/master.zip | |
working-directory: . | |
- name: Install monitoring module | |
run: | | |
python -m pip install https://github.com/PnX-SI/gn_module_monitoring/archive/main.zip | |
working-directory: . | |
- name: Install geonature database | |
run: | | |
export GEONATURE_CONFIG_FILE=`curl -fsSL https://raw.githubusercontent.com/PnX-SI/GeoNature/refs/heads/master/config/test_config.toml` | |
geonature db upgrade geonature@head -x local-srid=2154 | |
geonature db autoupgrade -x local-srid=2154 | |
- name: Install monitoring module database | |
run: | | |
export GEONATURE_CONFIG_FILE=`curl -fsSL https://raw.githubusercontent.com/PnX-SI/GeoNature/refs/heads/master/config/test_config.toml` | |
geonature upgrade-modules-db MONITORINGS | |
- name: Test install monitoring | |
run: | | |
export GEONATURE_CONFIG_FILE=`curl -fsSL https://raw.githubusercontent.com/PnX-SI/GeoNature/refs/heads/master/config/test_config.toml` | |
geonature monitorings install apollons |