-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (45 loc) · 1.23 KB
/
fusesoc.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
name: run-fusesoc-targets
on: [push]
jobs:
build-openlane-sky130:
runs-on: ubuntu-latest
env:
REPO : aes_core
VLNV : asics.ws::aes
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
path: aes_core
- run: echo "EDALIZE_LAUNCHER=el_docker" >> $GITHUB_ENV
- run: pip3 install fusesoc
- run: fusesoc library add $REPO $GITHUB_WORKSPACE/$REPO
- run: fusesoc run --target=sky130 $VLNV
lint-verilator:
runs-on: ubuntu-latest
env:
REPO : aes_core
VLNV : asics.ws::aes
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
path: aes_core
- run: sudo apt install verilator
- run: pip3 install fusesoc
- run: fusesoc library add $REPO $GITHUB_WORKSPACE/$REPO
- run: fusesoc run --target=lint $VLNV
sim-icarus:
runs-on: ubuntu-latest
env:
REPO : aes_core
VLNV : asics.ws::aes
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
path: aes_core
- run: sudo apt install iverilog
- run: pip3 install fusesoc
- run: fusesoc library add $REPO $GITHUB_WORKSPACE/$REPO
- run: fusesoc run --target=sim $VLNV