Skip to content

Commit

Permalink
[Ci/Cd] Use cmd parameters to build decoder.
Browse files Browse the repository at this point in the history
  • Loading branch information
egorman44 committed Aug 24, 2024
1 parent 4cffe2b commit 42aeb9a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,15 @@ jobs:
run: sbt compile

- name: Generate Verilog
run: sbt "runMain Rs.GenRsBlockRecovery"
run: sbt "runMain Rs.GenRsBlockRecovery --axis-clock 156.25 --core-clock 125.00 --symb-width 8 --bus-width 8 --poly 285 --fcr 0 --n-len 255 --k-len 239"

- name: Upload RsBlockRecovery.sv
uses: actions/upload-artifact@v4
with:
name: RsBlockRecovery.sv
path: ./RsBlockRecovery.sv
name: design-artifacts
path: |
./RsBlockRecovery.sv
./rs.json
coco_sim:
runs-on: ubuntu-latest
Expand All @@ -66,7 +68,7 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: RsBlockRecovery.sv
name: design-artifacts
path: .

- name: Check dir
Expand Down

0 comments on commit 42aeb9a

Please sign in to comment.