Skip to content

Fixed TB output syntax #8

Fixed TB output syntax

Fixed TB output syntax #8

Workflow file for this run

name: build-openlane-sky130
on: [push]
jobs:
build-prince:
runs-on: ubuntu-latest
env:
REPO : prince
VLNV : secworks:crypto:prince
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
path: prince
- name: Checkout pdk
uses: actions/checkout@v2
with:
repository: olofk/pdklite
path: pdklite
- run: echo "PDK_ROOT=$GITHUB_WORKSPACE/pdklite" >> $GITHUB_ENV
- run: echo "EDALIZE_LAUNCHER=${GITHUB_WORKSPACE}/$REPO/.github/workflows/openlane_runner.py" >> $GITHUB_ENV
- run: pip3 install --user -e "git+https://github.com/olofk/edalize.git#egg=edalize"
- run: pip3 install fusesoc
# - run: docker pull efabless/openlane:v0.12
- run: fusesoc library add $REPO $GITHUB_WORKSPACE/$REPO
- run: fusesoc run --target=sky130 $VLNV
sim-icarus:
runs-on: ubuntu-latest
env:
REPO : prince
VLNV : secworks:crypto:prince
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
path: prince
- run: sudo apt install iverilog
- run: pip3 install fusesoc
- run: fusesoc library add $REPO $GITHUB_WORKSPACE/$REPO
- run: fusesoc run --target=tb_prince $VLNV
- run: fusesoc run --target=tb_prince_core $VLNV
lint-verilator:
runs-on: ubuntu-latest
env:
REPO : prince
VLNV : secworks:crypto:prince
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
path: prince
- run: sudo apt install verilator
- run: pip3 install fusesoc
- run: fusesoc library add $REPO $GITHUB_WORKSPACE/$REPO
- run: fusesoc run --target=lint $VLNV