From a2192b7e8fbabac03de87a6193b4ef6a79cecf79 Mon Sep 17 00:00:00 2001 From: cah Date: Fri, 13 Mar 2026 23:56:26 -0600 Subject: [PATCH] ci: replace hardening workflow with RTL lint The template CI tried to re-harden from scratch in GitHub Actions, but cf harden requires a TTY for Docker and the design takes 8+ hours. Replace with a Verilator lint check. Hardening and precheck are run locally on snoke; GDS/SPEF are uploaded via cf push. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/user_project_ci.yml | 232 ++------------------------ 1 file changed, 12 insertions(+), 220 deletions(-) diff --git a/.github/workflows/user_project_ci.yml b/.github/workflows/user_project_ci.yml index 175e9a2..6cb2245 100644 --- a/.github/workflows/user_project_ci.yml +++ b/.github/workflows/user_project_ci.yml @@ -6,231 +6,23 @@ on: workflow_dispatch: jobs: - hardening: - timeout-minutes: 720 + rtl-lint: + timeout-minutes: 30 runs-on: ubuntu-latest - strategy: - matrix: - pdk: ["sky130A", "sky130B"] steps: - uses: actions/checkout@v4 - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - - name: Install ChipFoundry CLI + - name: Install Verilator run: | sudo apt-get update - sudo apt-get install -y python3 python3-pip python3-venv python3-tk - pip3 install chipfoundry-cli + sudo apt-get install -y verilator - - name: Initialize Project + - name: Lint RTL run: | - mkdir -p .cf - python3 <