ci: Minor Change #4
Workflow file for this run
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
# Copyright 2024 ETH Zurich and University of Bologna. | |
# Solderpad Hardware License, Version 0.51, see LICENSE for details. | |
# SPDX-License-Identifier: SHL-0.51 | |
# Author: Tim Fischer <[email protected]> | |
name: floogen | |
on: [push, pull_request] | |
jobs: | |
##################### | |
# Generate SV files # | |
##################### | |
gen-nocs: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
examples: ["single_cluster", "occamy_mesh", "occamy_tree"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
- name: Install floogen | |
run: | | |
python -m pip install -e . | |
- name: Generate NoCs | |
run: | | |
floogen -c floogen/examples/${{ matrix.examples }}.yml -o generated --no_formatting | |
- name: Format generated NoCs | |
uses: chipsalliance/verible-formatter-action@main | |
with: | |
files: | |
./generated/${{ matrix.examples }}_floo_noc.sv | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.examples }} | |
path: generated/${{ matrix.examples }}_floo_noc.sv | |
if-no-files-found: error | |
retention-days: 1 | |
# jobs: | |
# job1: | |
# runs-on: ubuntu-latest | |
# steps: | |
# # ... | |
# - name: Upload artifact | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: my-artifact | |
# path: path/to/artifact | |
# job2: | |
# needs: job1 | |
# runs-on: ubuntu-latest | |
# steps: | |
# # ... | |
# - name: Download artifact | |
# uses: actions/download-artifact@v2 | |
# with: | |
# name: my-artifact | |
# path: path/to/download/location | |
################# | |
# Lint SV files # | |
################# | |
lint-nocs: | |
runs-on: ubuntu-latest | |
needs: gen-nocs | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
path: generated | |
- name: Lint SV files | |
uses: chipsalliance/verible-linter-action@main | |
with: | |
paths: | |
./generated | |
github_token: ${{ secrets.GITHUB_TOKEN }} |