Skip to content

Update dependency ngeo to v2.10.0-latest.20260716T023131Z.b4e61f8d0 #14732

Update dependency ngeo to v2.10.0-latest.20260716T023131Z.b4e61f8d0

Update dependency ngeo to v2.10.0-latest.20260716T023131Z.b4e61f8d0 #14732

Workflow file for this run

name: Continuous integration
on:
push:
permissions:
contents: write
packages: write
env:
HAS_SECRETS: ${{ secrets.HAS_SECRETS }}
jobs:
main:
name: Continuous integration
runs-on: ubuntu-24.04
timeout-minutes: 20
steps:
- run: df -h
- name: Clean all docker images
run: docker system prune --all --force
# Inspired by https://github.com/jlumbroso/free-disk-space/
- run: sudo rm -rf /usr/local/lib/android /usr/share/dotnet "$AGENT_TOOLSDIRECTORY"
- run: df -h
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: camptocamp/demo_geomapfish_data
ref: master
path: data
- uses: camptocamp/initialise-gopass-summon-action@v2
with:
ci-gpg-private-key: ${{ secrets.CI_GPG_PRIVATE_KEY }}
github-gopass-ci-token: ${{ secrets.GOPASS_CI_GITHUB_TOKEN }}
patterns: docker
if: env.HAS_SECRETS == 'HAS_SECRETS'
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
- run: python3 -m pip install --requirement=ci/requirements.txt
- name: Environment information
run: c2cciutils-env
- uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
restore-keys: "pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}\npre-commit-"
- run: pre-commit run --all-files --config=.pre-commit-config.yaml
- run: git diff --exit-code --patch > /tmp/pre-commit.patch || true
if: failure()
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: Apply pre-commit fix.patch
path: /tmp/pre-commit.patch
retention-days: 1
if: failure()
# Can be used to have some secrets (with mask)
# - run: make secrets
# - run: cat env.secrets |grep '^[# A-Z0-9_]\+='|sed -e 's/^[# A-Z0-9_]\+=\(.*\)/::add-mask::\1/g'
- run: touch env.secrets
- name: Build
run: ./build
- name: Application checks
run: make checks
- name: Initialize the acceptance tests
run: make acceptance-init
- run: c2cciutils-docker-logs
- name: Fix null values
run: docker compose exec tools psql -c "UPDATE main_2_7.tsearch SET label = 'no-label' WHERE label is NULL;"
- name: Rename schemas
run: |
docker compose exec tools psql -c "ALTER SCHEMA main_2_7 RENAME TO main_2_10;"
docker compose exec tools psql -c "ALTER SCHEMA static_2_7 RENAME TO static_2_10;"
- name: Run Alembic main
run: docker compose --file=docker-compose.yaml --file=docker-compose-db.yaml up alembic-main
- name: Run Alembic static
run: docker compose --file=docker-compose.yaml --file=docker-compose-db.yaml up alembic
- run: c2cciutils-docker-logs
- name: Run the acceptance tests
run: make acceptance
- run: c2cciutils-docker-logs
- run: make acceptance-dev
- run: c2cciutils-docker-logs
- run:
docker compose --file=docker-compose.yaml --file=docker-compose-db.yaml --file=docker-compose.override.sample.yaml
up -d
- name: Run the acceptance tests on dev
run: make acceptance
- run: c2cciutils-docker-logs
if: always()
# Rebuild the image with the right schema
- run: rm env.secrets
- run: touch env.secrets
- name: Build
run: ./build --no-pull
- name: Publish
run: c2cciutils-publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: git diff --exit-code --patch > /tmp/dpkg-versions.patch; git diff --color; git reset --hard || true
if: failure()
- uses: actions/upload-artifact@v4
with:
name: Update dpkg versions list.patch
path: /tmp/dpkg-versions.patch
retention-days: 1
if: failure()