-
-
Notifications
You must be signed in to change notification settings - Fork 2
148 lines (127 loc) · 3.96 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
name: Tests 🎳
on:
push:
tags:
- "*"
branches:
- master
paths:
- 'dynamic_layers/**'
- '.docker/**'
pull_request:
branches:
- master
paths:
- 'dynamic_layers/**'
jobs:
unittests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# - name: Extract branch name
# shell: bash
# run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
# id: extract_branch
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install flake8 pytest
- name: Install APT dependencies
run: |
sudo wget -O /etc/apt/keyrings/qgis-archive-keyring.gpg https://download.qgis.org/downloads/qgis-archive-keyring.gpg
sudo sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/qgis-archive-keyring.gpg] https://qgis.org/ubuntu-ltr $(lsb_release -cs) main" >> /etc/apt/sources.list'
sudo apt update
sudo apt install qgis xvfb
# - name: Lint with flake8
# run: |
# stop the build if there are Python syntax errors or undefined names
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
xvfb-run pytest -v
# flake8:
# runs-on: ubuntu-latest
# steps:
#
# - name: Checkout
# uses: actions/checkout@v4
#
# - name: Setup Python
# uses: actions/setup-python@v5
# with:
# python-version: "3.10"
# architecture: x64
#
# - name: Install Python requirements
# run: pip install -r requirements/dev.txt
#
# - name: Run flake8
# run: flake8
#
# tests:
# runs-on: ubuntu-latest
# defaults:
# run:
# working-directory: .docker
# strategy:
# matrix:
# qgis_version: [
# "release-3_34",
# "release-3_28",
# "latest",
# ]
# steps:
#
# - name: Check out repository
# uses: actions/checkout@v4
#
# - name: Make env
# run: cd .. && make env QGIS_VERSION=${{ matrix.qgis_version }}
#
# - name: Launching docker compose
# run: ./start.sh
#
# - name: Running tests
# run: ./exec.sh
release:
# needs: [tests, flake8]
runs-on: ubuntu-latest
if: github.repository_owner == '3liz' && contains(github.ref, 'refs/tags/')
steps:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Qt lrelease
run: |
sudo apt-get update
sudo apt-get install qttools5-dev-tools
- name: Install Python requirements
run: pip install -r requirements/packaging.txt
- name : Fetch current changelog
run: qgis-plugin-ci changelog ${{ env.RELEASE_VERSION }} >> release.md
- name: Create release on GitHub
uses: ncipollo/release-action@v1.14.0
with:
bodyFile: release.md
token: ${{ secrets.BOT_HUB_TOKEN }}
- name: Package and deploy the zip
run: >-
qgis-plugin-ci
-v
release ${{ env.RELEASE_VERSION }}
--github-token ${{ secrets.BOT_HUB_TOKEN }}
--transifex-token ${{ secrets.TRANSIFEX_TOKEN }}
--create-plugin-repo
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.BOT_HUB_TOKEN }}
repository: 3liz/3liz.github.io
event-type: merge-plugins
client-payload: '{"name": "dynamic_layers", "version": "${{ env.RELEASE_VERSION }}", "url": "https://github.com/3liz/QgisDynamicLayersPlugin/releases/latest/download/plugins.xml"}'