-
-
Notifications
You must be signed in to change notification settings - Fork 84
133 lines (118 loc) · 3.6 KB
/
ci.yml
File metadata and controls
133 lines (118 loc) · 3.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
---
name: OpenWISP Network Topology CI Build
on:
push:
branches:
- master
pull_request:
branches:
- master
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@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
**/requirements*.txt
- 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: Install Dependencies
id: deps
run: |
sudo apt update -qq
sudo apt -qq install \
sqlite3 \
gdal-bin \
libproj-dev \
libgeos-dev \
libspatialite-dev \
spatialite-bin \
libsqlite3-mod-spatialite
pip install -U pip wheel setuptools
pip install -U -e .
pip install -U -r requirements-test.txt
pip install ${{ matrix.django-version }}
- 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 --tag=no_parallel
coverage run runtests.py --parallel --exclude-tag=no_parallel
WIFI_MESH=1 coverage run runtests.py --parallel \
--exclude-tag=no_parallel \
--exclude-tag=selenium_tests
SAMPLE_APP=1 coverage run ./runtests.py --parallel \
--exclude-tag=no_parallel \
--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.env.env }}
github-token: ${{ secrets.GITHUB_TOKEN }}
coveralls:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true