Skip to content

chore: Update .gitignore, change checkout paths and enable CI retry #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 20, 2025
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
.bender

# Python virtual environment
.cache/pip
.venv

# Generated source files
Expand Down
3 changes: 3 additions & 0 deletions .gitlab/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ variables:
# inherit all global cache settings
<<: *global_cache
policy: pull-push
# bender checkout sometimes fails,
# due to rate limiting of github
retry: 1

# Generate the RTL sources
.generate-rtl-tpl:
Expand Down
2 changes: 1 addition & 1 deletion Bender.lock
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ packages:
revision: null
version: null
source:
Path: deps/fhg_spu_cluster
Path: .deps/fhg_spu_cluster
dependencies: []
floo_noc:
revision: 6ac187326b222a491180cc3f77e0e4e5a69f5167
Expand Down
4 changes: 2 additions & 2 deletions Bender.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies:
obi: { git: "https://github.com/pulp-platform/obi.git", rev: "ad1d48f025be540344960ea83b4bff39876f9b36"}
axi_obi: { path: "hw/axi_obi" }
picobello-pd: { path: "./pd" }
fhg_spu_cluster: { path: "./deps/fhg_spu_cluster" }
fhg_spu_cluster: { path: "./.deps/fhg_spu_cluster" }

workspace:
package_links:
Expand Down Expand Up @@ -51,7 +51,7 @@ sources:

- target: asic
files:
- deps/fhg_spu_cluster/hw/fhg_spu_tile.sv
- .deps/fhg_spu_cluster/hw/fhg_spu_tile.sv

# Level 3
- hw/picobello_top.sv
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ PD_COMMIT ?= 1f60bc7569ec29e05ba996f7d7664476ac6771e2
PD_DIR = $(PB_ROOT)/pd
SPU_REMOTE ?= git@iis-git.ee.ethz.ch:picobello/fhg_spu_cluster.git
SPU_COMMIT ?= 52ff92b99d07f7fa48d9b81c5d713c369bd4faa6
SPU_DIR = $(PB_ROOT)/deps/fhg_spu_cluster
SPU_DIR = $(PB_ROOT)/.deps/fhg_spu_cluster

.PHONY: init-pd clean-pd

Expand Down