Update list of verilog-axi
RTL files, fix logging
#1
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: Package cores for Topwrap | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
core-name: ["verilog-axi"] | |
env: | |
python-version: "3.11" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ env.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.python-version }} | |
- name: Install Topwrap | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y git build-essential antlr4 libantlr4-runtime-dev yosys | |
pip install -e .[topwrap-parse] | |
- name: Create ${{ matrix.core-name }} package | |
run: ./scripts/pack_core.py ${{ matrix.core-name }} | |
- name: Upload core package | |
uses: actions/upload-artifact@v4 | |
with: | |
path: "*.tar.gz" |