Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

cache:
runs-on: self-hosted
timeout-minutes: 20
timeout-minutes: 30
if: ${{ !cancelled() }}

steps:
Expand All @@ -38,6 +38,8 @@ jobs:
run: make sim-test
- name: run fpga test
run: make fpga-test
- name: run synthesis test (yosys)
run: make syn-test

reuse:
runs-on: self-hosted
Expand Down
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ fpga-test:
make fpga-build BE_IF=IOb
make fpga-build BE_IF=AXI4


syn-build: clean setup
nix-shell --run "make -C $(BUILD_DIR) syn-build"

syn-test:
make syn-build BE_IF=IOb
make syn-build BE_IF=AXI4

doc-build: clean setup
nix-shell --run "make -C $(BUILD_DIR) doc-build DOC=$(DOC)"

Expand Down
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/25.05.tar.gz") {} }:

let
py2hwsw_commit = "dace76f2193e23ac7b38be4f783d6c74e458d087"; # Replace with the desired commit.
py2hwsw_sha256 = "tKGm5hAsRKjkYKPaXGVydIfnJZM4DqUTff+eDlVaDkA="; # Replace with the actual SHA256 hash.
py2hwsw_commit = "13d2f9d76e3af80c76293e6f5ad0db8593c3e405"; # Replace with the desired commit.
py2hwsw_sha256 = "AjDDJZZgTEllKfImNtj5MyDP2A4eqVge6bP8fgo2STM="; # Replace with the actual SHA256 hash.
# Get local py2hwsw root from `PY2HWSW_ROOT` env variable
py2hwswRoot = builtins.getEnv "PY2HWSW_ROOT";

Expand Down