2023-12-12 14:27:17 -05:00
|
|
|
name: Analyze
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
decomplint-isle:
|
2024-01-10 17:34:32 -05:00
|
|
|
name: 'ISLE annotations'
|
2023-12-12 14:27:17 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install python libraries
|
|
|
|
run: |
|
|
|
|
pip install -r tools/requirements.txt
|
|
|
|
|
|
|
|
- name: Run decomplint.py
|
|
|
|
run: |
|
|
|
|
python3 tools/decomplint/decomplint.py ISLE --module ISLE --warnfail
|
|
|
|
|
|
|
|
decomplint-lego1:
|
2024-01-10 17:34:32 -05:00
|
|
|
name: 'LEGO1 annotations'
|
2023-12-12 14:27:17 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install python libraries
|
|
|
|
run: |
|
|
|
|
pip install -r tools/requirements.txt
|
|
|
|
|
|
|
|
- name: Run decomplint.py
|
|
|
|
run: |
|
|
|
|
python3 tools/decomplint/decomplint.py LEGO1 --module LEGO1 --warnfail
|