-
-
Notifications
You must be signed in to change notification settings - Fork 120
155 lines (134 loc) · 4.15 KB
/
ci.yml
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
name: OpenWISP Monitoring CI Build
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
jobs:
build:
name: Python==${{ matrix.python-version }} | ${{ matrix.django-version }}
runs-on: ubuntu-20.04
services:
redis:
image: redis:5.0-alpine
ports:
- 6379:6379
influxdb:
image: influxdb:1.8-alpine
ports:
- 8086:8086
influxdb2:
image: influxdb:2.0-alpine
volumes:
- influxdb2-data:/var/lib/influxdb2
ports:
- 8087:8087
options: >-
--env DOCKER_INFLUXDB_INIT_MODE=setup
--env DOCKER_INFLUXDB_INIT_USERNAME=openwisp
--env DOCKER_INFLUXDB_INIT_PASSWORD=openwisp
--env DOCKER_INFLUXDB_INIT_ORG=openwisp
--env DOCKER_INFLUXDB_INIT_BUCKET=openwisp2
--env DOCKER_INFLUXDB_INIT_RETENTION=1w
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
django-version:
- django~=3.2.0
- django~=4.1.0
- django~=4.2.0
influxdb-version:
- influxdb
- influxdb2
steps:
- name: Install system packages
run: |
sudo apt update &&
sudo apt -qq install \
sqlite3 \
fping \
gdal-bin \
libproj-dev \
libgeos-dev \
libspatialite-dev \
spatialite-bin \
libsqlite3-mod-spatialite
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install python system packages
run: |
pip install -U pip wheel setuptools
- name: Install npm dependencies
run: sudo npm install -g jshint stylelint
- name: Start InfluxDB ${{ matrix.influxdb-version }} container
run: docker-compose up -d ${{ matrix.influxdb-version }}
- name: Install test dependencies
run: |
pip install -r requirements-test.txt
- name: Install openwisp-monitoring
run: |
pip install -U -I -e .
pip uninstall -y django
pip install ${{ matrix.django-version }}
- name: Set InfluxDB environment variables for InfluxDB 2.x
if: matrix.influxdb-version == 'influxdb2'
run: |
export INFLUXDB_HOST=localhost
export INFLUXDB_PORT=8088
export USE_INFLUXDB2=True
- name: QA checks
run: |
./run-qa-checks
- name: Tests
run: |
SAMPLE_APP=1 coverage run --source=openwisp_monitoring runtests.py
coverage run -a --source=openwisp_monitoring runtests.py
TIMESERIES_UDP=1 coverage run -a --source=openwisp_monitoring runtests.py
coverage xml
- name: Upload Coverage
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-20.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@v1
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