Skip to content

[feature] Setting url fragments and applying to that data on both maps #1916

[feature] Setting url fragments and applying to that data on both maps

[feature] Setting url fragments and applying to that data on both maps #1916

Workflow file for this run

---
name: OpenWISP Monitoring CI Build
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
- gsoc25-map
jobs:
build:
name: Python==${{ matrix.python-version }} | ${{ matrix.django-version }}
runs-on: ubuntu-24.04
services:
redis:
image: redis
ports:
- 6379:6379
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
django-version:
- django~=4.2.0
- django~=5.1.0
- django~=5.2.0
exclude:
# Django 5.1+ requires Python >=3.10
- python-version: "3.9"
django-version: django~=5.1.0
- python-version: "3.9"
django-version: django~=5.2.0
# Python 3.13 supported only in Django >=5.1.3
- python-version: "3.13"
django-version: django~=4.2.0
steps:
- uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Cache APT packages
uses: actions/cache@v4
with:
path: /var/cache/apt/archives
key: apt-${{ runner.os }}-${{ hashFiles('.github/workflows/ci.yml') }}
restore-keys: |
apt-${{ runner.os }}-
- name: Disable man page auto-update
run: |
echo 'set man-db/auto-update false' | sudo debconf-communicate >/dev/null
sudo dpkg-reconfigure man-db
- name: Set up and Cache Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: |
**/requirements*.txt
- name: Install Dependencies
id: deps
run: |
sudo apt update -qq
sudo apt -qq install \
sqlite3 \
fping \
gdal-bin \
libproj-dev \
libgeos-dev \
libspatialite-dev \
spatialite-bin \
libsqlite3-mod-spatialite
pip install -U pip wheel setuptools
pip install -r requirements-test.txt
pip install -U -I -e .
pip uninstall -y Django
# TODO: Remove before merging - install branch build of openwisp-utils for CI testing
pip install -U -I "openwisp-utils @ https://github.com/openwisp/openwisp-utils/tarball/gsoc25-map-adjustments"
pip install -U ${{ matrix.django-version }}
sudo npm install -g prettier
- name: Start InfluxDB
if: ${{ !cancelled() && steps.deps.conclusion == 'success' }}
run: docker compose up -d influxdb
- name: QA checks
run: |
./run-qa-checks
- name: Tests
if: ${{ !cancelled() && steps.deps.conclusion == 'success' }}
run: |
coverage run runtests.py
# the next test runs focus on specific backend features, therefore
# we can skip selenium tests to improve speed and test consistency
SAMPLE_APP=1 coverage run runtests.py --exclude-tag=selenium_tests
TIMESERIES_UDP=1 coverage run runtests.py --exclude-tag=selenium_tests
coverage combine
coverage xml
env:
SELENIUM_HEADLESS: 1
GECKO_LOG: 1
- name: Show gecko web driver log on failures
if: ${{ failure() }}
run: cat geckodriver.log
- name: Upload Coverage
if: ${{ success() }}
uses: coverallsapp/github-action@v2
with:
parallel: true
format: cobertura
flag-name: python-${{ matrix.python-version }}-${{ matrix.django-version }}
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy:
name: Deploy Docker Image
runs-on: ubuntu-24.04
needs:
- build
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
steps:
- uses: actions/checkout@master
# the following action is equivalent to
# echo "$DOCKER_HUB_SECRET" | docker login --username "$DOCKER_HUB_USERNAME" --password-stdin
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_SECRET }}
- name: Push to Docker
run: |
docker build . -t openwisp/openwisp-monitoring:develop
docker push openwisp/openwisp-monitoring:develop
coveralls:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true