Static React + Vite dashboard visualizing RISC-V software enablement maturity across key packages.
This site serves as a continuously maintained catalog of porting status, upstream maturity, and ecosystem coverage.
The site is deployed using GitHub Pages and rebuilt automatically:
- on every commit/merge to
main - hourly via scheduled GitHub Actions
- manually via the Actions tab (workflow dispatch)
📍 Note: The “Last updated” timestamp displayed on the dashboard reflects the most recent successful CI deployment.
- Horizontal enablement snapshot bar (global view, not affected by filters/search)
- Global table search (all columns)
- Category / Type / Status filters
- CSV export of currently filtered/sorted view
- Strict YAML schema validation before deploy
- Clean Filters reset control
- Hyperlinked software entries with ⇗ indicator
| Layer | Technology |
|---|---|
| UI | React + Vite + TypeScript |
| Styling | Tailwind CSS |
| Data format | YAML (public/data.yaml) |
| Validation | Ajv + JSON Schema |
| CSV export | PapaParse |
| Deployment | GitHub Pages + GitHub Actions |
.
├── public/
│ ├── data.yaml
│ └── riscv-logo.png
├── schema/
│ └── data-schema.json
├── scripts/
│ └── validate-data.mjs
├── src/
│ ├── App.tsx
│ ├── main.tsx
│ └── components/
├── .github/
│ └── workflows/
│ └── deploy.yml
├── package.json
└── vite.config.ts
npm install
npm run devProduction build:
npm run build
npm run previewValidate YAML schema:
npm run validate:data| Trigger | Action |
|---|---|
Push to main |
validate → build → deploy |
| Scheduled cron (hourly) | validate → build → deploy |
| Manual dispatch | validate → build → deploy |
If validation fails:
- build halts
- deploy stops
- current production site remains unchanged
public/data.yaml must satisfy:
schema/data-schema.json
Example entry:
- id: 001
category: Toolchain
software: "LLVM"
status: Enabled
type: Open Source
riscvEnablement: "https://github.com/llvm/llvm-project"| Status | Meaning |
|---|---|
| Enabled | Full support, production ready |
| In Progress | Enablement underway |
| Optimized | RISC-V tuned/enhanced |
| TBD | Pending verification |
Please refer to CONTRIBUTING.md for detailed instructions on how to add or update packages.