Skip to content
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

.github: Add first nightly check #8

Merged
merged 1 commit into from
Jan 21, 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
39 changes: 39 additions & 0 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Check Design Flow from RTL to GDS

on:
schedule:
- cron: '0 4 * * *'

jobs:
build:

runs-on: ubuntu-latest
timeout-minutes: 60

steps:
- uses: actions/checkout@v4

- name: Install dependencies
run: |
sudo snap install task --classic
sudo apt install virtualenv

- name: Prepare the project
run: |
task install nightly=true

- name: Prepare files
run: |
IS_HEADLESS=true task prepare

- name: Generate layout
run: |
IS_HEADLESS=true task layout

- name: Add metal fill
run: |
IS_HEADLESS=true task filler

- name: RUN maximal DRC
run: |
IS_HEADLESS=true task run-drc
3 changes: 2 additions & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ tasks:
- venv/bin/pip3 install podman-compose==1.0.6
- curl https://storage.googleapis.com/git-repo-downloads/repo > repo
- chmod a+rx repo
- ./repo init -u https://github.com/aesc-silicon/i2c-gpio-expander.git -b {{if .branch}}{{.branch}}{{else}}main{{end}} -m manifest.xml
- ./repo init -u https://github.com/aesc-silicon/i2c-gpio-expander.git -b {{if .branch}}{{.branch}}{{else}}main{{end}} -m manifest{{if .nightly}}-nightly{{end}}.xml

build-container:
desc: Creates a container with all necessary host requirements pre-installed.
Expand All @@ -50,6 +50,7 @@ tasks:
- task: repo-sync
vars:
branch: "main"
nightly: "false"

fpga-prepare:
desc: Produces the Verilog file and metadata needed for FPGA operations.
Expand Down
14 changes: 14 additions & 0 deletions manifest-nightly.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version='1.0' encoding='UTF-8'?>
<manifest>
<remote fetch="https://github.com" name="github" />

<default remote="github" sync-j="8" />

<project name="aesc-silicon/elements-nafarr" path="modules/elements/nafarr" revision="627f70ec179a7689fa7e10a181f1e20b2296d299" />
<project name="aesc-silicon/elements-zibal" path="modules/elements/zibal" revision="b4212a426d1bd8142399874ec2eed01f1bba583d" />
<project name="SpinalHDL/SpinalCrypto" path="modules/elements/SpinalCrypto" revision="f2a4ae9db5e9434c5589d0651efec8719103498e" />
<project name="aesc-silicon/elements-vexriscv" path="modules/elements/vexriscv" revision="7f2bccbef256b3ad40fb8dc8ba08a266f9c6256b" />
<project name="aesc-silicon/gdsiistl" path="tools/gdsiistl" revision="5884b20565a765f10918eedc0787a2beb6a682fd" />
<project name="The-OpenROAD-Project/OpenROAD-flow-scripts" path="tools/OpenROAD-flow-scripts" revision="master" />
<project name="IHP-GmbH/IHP-Open-PDK" sync-s="true" path="pdks/IHP-Open-PDK" revision="dev" />
</manifest>
Loading