aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/python-app.yml
blob: 86d5f0a4871927142a79ca53eeeccd037083276e (plain)
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
name: Opcodes generation

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Set up Python 3.8
      uses: actions/setup-python@v2
      with:
        python-version: 3.8
    - name: Install PyYAML
      run: |
         pip3 install -r requirements.txt
         pip3 install coverage
    - name: Generate
      run: coverage run ./parse.py -c -chisel -sverilog -rust -latex -spinalhdl -go "rv*" "unratified/rv*"
    - name: Check C output
      run: cat encoding.out.h  | cpp
    - name: Generate coverage
      run: coverage xml
    - name: Upload coverage
      uses: codecov/codecov-action@v2