Skip to content

Commit

Permalink
ci: Try to execute floogen as executable
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Jan 3, 2024
1 parent 0ce9a1c commit 6628908
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion .github/workflows/floogen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,39 @@ jobs:
python -m pip install -e .
- name: Generate NoCs
run: |
python -m floogen -c floogen/examples/${{ matrix.examples }}.yml
floogen -c floogen/examples/${{ matrix.examples }}.yml --no_formatting
- name: Format generated NoCs
uses: chipsalliance/verible-formatter-action@main
with:
files:
./generated/*.sv
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: Upload generated NoCs
path: generated/

# 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

0 comments on commit 6628908

Please sign in to comment.