-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (43 loc) · 1.64 KB
/
demo-agent.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
name: Demo TCPCL Agent
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.10", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
sudo apt-get update && sudo apt-get install build-essential dbus libdbus-glib-1-dev libgirepository1.0-dev
python3 -m venv build/venv
source ./build/venv/bin/activate
# custom cose repo
pip3 install git+https://github.com/TimothyClaeys/[email protected]
pip3 install -e .
- name: Lint with flake8
run: |
pip3 install flake8
# 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: |
source ./build/venv/bin/activate
pip3 install -e '.[test]'
dbus-run-session -- python3 -m pytest -v --cov=scapy_cbor --cov=bp --cov=udpcl --cov=tcpcl src
- name: Transfer udpcl
run: |
source ./build/venv/bin/activate
dbus-run-session -- python3 -m udpcl.test.bundlegen --log=debug fullvalid
- name: Transfer tcpcl
run: |
source ./build/venv/bin/activate
dbus-run-session -- python3 -m tcpcl.test.bundlegen --log=debug fullvalid