-
Notifications
You must be signed in to change notification settings - Fork 384
97 lines (79 loc) · 2.71 KB
/
commitflow-py3.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
name: Python 3 CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
hue-build-and-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check commit title format
run: |
./tools/ci/check_for_commit_message.sh
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v4
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('desktop/core/generate_requirements.py') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Setup node 20 and cache npm
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Build Hue
run: |
sudo apt-get update
sudo apt-get install -y build-essential asciidoc libkrb5-dev libldap2-dev libsasl2-dev libxslt-dev libsasl2-modules-gssapi-mit libsnappy-dev libgdbm-dev
export PYTHON_VER=python${{ matrix.python-version }}
export SKIP_PYTHONDEV_CHECK=true
export ROOT=$PWD
make apps test_prep
- name: Run unit tests
run: |
if [[ "${{ matrix.python-version }}" == "3.11" ]]; then
./build/env/bin/pytest
else
./build/venvs/python${{ matrix.python-version }}/bin/pytest
fi
- name: Run python lint check
run: |
if [[ "${{ matrix.python-version }}" == "3.11" ]]; then
PYTHONWARNINGS=always ./build/env/bin/hue runruff check
else
PYTHONWARNINGS=always ./build/venvs/python${{ matrix.python-version }}/bin/hue runruff check
fi
- name: Run documentation lint check
run: |
curl -O https://dl.google.com/go/go1.23.4.linux-amd64.tar.gz
tar -xvf go1.23.4.linux-amd64.tar.gz
go/bin/go install github.com/raviqqe/muffet/v2@latest
curl --output hugo_0.69.0_Linux.tar.gz -L https://github.com/gohugoio/hugo/releases/download/v0.69.0/hugo_0.69.0_Linux-64bit.tar.gz
tar -xvf hugo_0.69.0_Linux.tar.gz
export PATH=$PWD:$HOME/go/bin:$PATH
# Trigger linting if documentation changes
./tools/ci/check_for_website_dead_links.sh docs/docs-site
# ./tools/ci/check_for_website_dead_links.sh docs/gethue
- name: Upload reports
if: matrix.python-version == '3.11'
uses: actions/upload-artifact@v4
with:
name: hue-reports
path: ./reports