-
Notifications
You must be signed in to change notification settings - Fork 90
48 lines (45 loc) · 1.25 KB
/
ci.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: build-openlane-sky130
on: [push]
jobs:
build-sha256:
runs-on: ubuntu-latest
env:
REPO : sha256
VLNV : secworks:crypto:sha256
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
path: sha256
- 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
sim-icarus:
runs-on: ubuntu-latest
env:
REPO : sha256
VLNV : secworks:crypto:sha256
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
path: sha256
- run: sudo apt install iverilog
- run: pip3 install fusesoc
- run: fusesoc library add $REPO $GITHUB_WORKSPACE/$REPO
- run: fusesoc run --target=tb_sha256 $VLNV
lint-verilator:
runs-on: ubuntu-latest
env:
REPO : sha256
VLNV : secworks:crypto:sha256
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
path: sha256
- run: sudo apt install verilator
- run: pip3 install fusesoc
- run: fusesoc library add $REPO $GITHUB_WORKSPACE/$REPO
- run: fusesoc run --target=lint $VLNV