-
Notifications
You must be signed in to change notification settings - Fork 4
65 lines (51 loc) · 1.53 KB
/
impl.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
name: Reference Implementations
on: [push, pull_request]
jobs:
impl_ice40:
name: iCE40 Reference Implementation
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: oss-cad-suite
uses: YosysHQ/setup-oss-cad-suite@v3
with:
version: '2024-02-02'
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: pip packages
run: pip3 install -r requirements.txt
- name: fusesoc library
run: |
fusesoc library add fazyrv .
fusesoc library add fsoc .
- name: Run implementation
run: |
make report.soc.all TARGET_ARCH=ice40
make report.md TARGET_ARCH=ice40 >> $GITHUB_STEP_SUMMARY
impl_ecp5:
name: ECP5 Reference Implementation
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: oss-cad-suite
uses: YosysHQ/setup-oss-cad-suite@v3
with:
version: '2024-02-02'
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: pip packages
run: pip3 install -r requirements.txt
- name: fusesoc library
run: |
fusesoc library add fazyrv .
fusesoc library add fsoc .
- name: Run implementation
run: |
make report.soc.all TARGET_ARCH=ecp5
make report.md TARGET_ARCH=ecp5 >> $GITHUB_STEP_SUMMARY