forked from espressif/esptool
-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (64 loc) · 2.04 KB
/
test_esptool.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
name: Test esptool
on: [push, pull_request]
jobs:
test_esptool:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout ref commit
uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install 'setuptools>=64'
- name: SoftHSM2 setup
run: |
sudo apt-get update
sudo apt-get install -y softhsm2
sudo chmod -R a+rx /etc/softhsm
sudo chmod a+r /etc/softhsm/softhsm2.conf
sudo chown -R $(whoami) /var/lib/softhsm
./ci/setup_softhsm2.sh || exit 1
- name: Install esptool and check if the installed versions can run
run: |
python setup.py build
pip install --extra-index-url https://dl.espressif.com/pypi -e .[dev,hsm]
esptool.py --help
espefuse.py --help
espsecure.py --help
- name: Test esptool and components
run: |
pytest -m host_test
pytest test/test_espsecure_hsm.py
check_stubs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up Python 3.13
uses: actions/setup-python@master
with:
python-version: 3.13
- name: Check if flasher stubs are up-to-date
run: |
./ci/download_flasher_stubs.py
git diff --exit-code
lint_esptool:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up Python 3.7
uses: actions/setup-python@master
with:
python-version: 3.7
- name: Run pre-commit hooks
run: |
pip install --extra-index-url https://dl.espressif.com/pypi -e .[dev]
pre-commit run --all-files