Skip to content

QGIS rebuild 2.7

QGIS rebuild 2.7 #890

name: QGIS rebuild 2.7
on:
schedule:
- cron: '30 3 * * *'
env:
HAS_SECRETS: ${{ secrets.HAS_SECRETS }}
jobs:
main:
runs-on: ubuntu-22.04
name: QGIS rebuild 2.7
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
version:
- '3.28'
- 3.28-gdal3.6
- 3.28-gdal3.7
- '3.34'
- 3.34-gdal3.7
- 3.34-gdal3.8
- ltr
- lr
- lr-debug
- master
branch:
- '2.7'
env:
MAIN_BRANCH: ${{ matrix.branch }}
MAJOR_VERSION: ${{ matrix.branch }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ env.MAIN_BRANCH }}
- 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'
- run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH}
- run: python3 -m pip install --user --requirement=ci/requirements.txt
- run: docker pull camptocamp/geomapfish:${{ env.MAJOR_VERSION }}
- run: docker tag camptocamp/geomapfish:${{ env.MAJOR_VERSION }} camptocamp/geomapfish
- run: make build-test-db
- name: Build QGIS server
run: |
docker build --target=runner --build-arg=VERSION=${{ matrix.version }} \
--tag=camptocamp/geomapfish-qgisserver \
docker/qgisserver;
docker tag camptocamp/geomapfish-qgisserver \
camptocamp/geomapfish-qgisserver:gmflatest-qgis${{ matrix.version }}
- name: Test library availability
run:
"! ( docker run --rm camptocamp/geomapfish-qgisserver ldd /usr/local/bin/qgis_mapserv.fcgi | grep 'not\
\ found' )"
- name: Acceptance tests
run: |
cd docker/qgisserver
docker compose up -d
docker compose exec -T tests /tests/wait-db
docker compose exec -T tests alembic --config=/tests/alembic.ini --name=main upgrade head
docker compose exec -T tests alembic --config=/tests/alembic.ini --name=static upgrade head
docker compose exec -T tests /tests/fill-db
c2cciutils-docker-logs
docker compose exec -T tests /tests/acceptance-tests
- run: c2cciutils-docker-logs
if: failure()
- run: docker compose down
- run: scripts/get-version --auto-increment --github
id: version
if: env.HAS_SECRETS == 'HAS_SECRETS'
- name: Publish feature branch
run: |
c2cciutils-publish --type=rebuild --group=qgis-${{ matrix.version }}