-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (45 loc) · 1.21 KB
/
coverage_pyuvm.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
name: pyuvm Functional Coverage
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0' # weekly
jobs:
run_tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.6]
env:
SIM: ghdl
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install cocotb-coverage
pip install cocotb-test
pip install pytest
pip install pytest-parallel
pip install pytest-xdist
pip install pyuvm
- uses: ghdl/setup-ghdl-ci@nightly
with:
backend: llvm
- run: |
ghdl --version
$GHDL --version
- name: regression
run: |
cd pyuvm_sim/
make
- name: Functional Coverage
run: |
cd pyuvm_sim/ && var=$(cat coverage.xml | grep -o -E 'cover_percentage.{0,5}' | head -1 | cut -f2- -d\")
if [ $var = 100 ]; then exit 0; else exit 1; fi