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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Example
name: Build Verilog

on:
push:
Expand All @@ -16,10 +16,6 @@ jobs:
# with:
# submodules: recursive

- name: Set up Toolchain
run: source $GITHUB_WORKSPACE/scripts/install-mill.sh

- name: Run make verilog
run: |
export PATH=$GITHUB_WORKSPACE/toolchains:$PATH
make verilog
25 changes: 25 additions & 0 deletions .github/workflows/run-vivado-flow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run Vivado Flow

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: self-hosted

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build MemorySubsystem
run: |
source /ecad/tools/xilinx/Vivado/2023.2.1/settings64.sh
make project PACKAGE=delta-soc DESIGN=delta.MemorySubsystem

- name: Build MlpPolicyRunner
run: |
source /ecad/tools/xilinx/Vivado/2023.2.1/settings64.sh
make project PACKAGE=delta-soc DESIGN=delta.MlpPolicyRunner
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ firmware/*.section
firmware/*.symbol

# Toolchains
toolchains/mill

# Vivado
vivado*.jou
Expand Down
Empty file removed .gitmodules
Empty file.
217 changes: 0 additions & 217 deletions ChiselProject/src/Elaborate.scala

This file was deleted.

69 changes: 0 additions & 69 deletions ChiselProject/src/generators/alexforencich/UDPCore.scala

This file was deleted.

Loading