Merge pull request #11 from olofk/automatic #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-openlane-sky130 | |
on: [push] | |
jobs: | |
build-aes: | |
runs-on: ubuntu-latest | |
env: | |
REPO : aes | |
VLNV : secworks:crypto:aes | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
path: aes | |
- 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 : aes | |
VLNV : secworks:crypto:aes | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
path: aes | |
- run: sudo apt install iverilog | |
- run: pip3 install fusesoc | |
- run: fusesoc library add $REPO $GITHUB_WORKSPACE/$REPO | |
- run: fusesoc run --target=tb_aes $VLNV | |
lint-verilator: | |
runs-on: ubuntu-latest | |
env: | |
REPO : aes | |
VLNV : secworks:crypto:aes | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
path: aes | |
- run: sudo apt install verilator | |
- run: pip3 install fusesoc | |
- run: fusesoc library add $REPO $GITHUB_WORKSPACE/$REPO | |
- run: fusesoc run --target=lint $VLNV |