惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
博客园 - Franky
罗磊的独立博客
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
V
V2EX
F
Fortinet All Blogs
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
U
Unit 42
GbyAI
GbyAI
A
About on SuperTechFans
WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
Martin Fowler
Martin Fowler
D
DataBreaches.Net
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | Blog

Show HN

GitHub - astefanutti/shaderbang: Shebang for Shaders Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap
GitHub - jumpstarter-dev/jumpstarter: Hardware testing fo...
mickuehl · 2026-06-01 · via Show HN

Matrix Etherpad Community Meeting GitHub Release PyPI - Version Ask DeepWiki

Jumpstarter is a free and open source test automation framework. It bridges the gap between embedded development workflows and deployment environments, enabling consistent automated testing across real hardware and virtual environments with CI/CD integration. Every interface is programmatic, so human developers, test scripts, CI pipelines, and AI agents interact with devices through the same APIs.

Highlights

  • 🧪 Unified Testing - One tool for physical and virtual devices under test
  • 🔌 Hardware Abstraction - Control UART, CAN, SPI, GPIO, power, and USB through drivers
  • 🐍 Python-Powered - Integrate with PyTest and Python's testing ecosystem
  • 🌐 Collaborative - Share and securely lease test hardware across teams
  • ⚙️ Automation Ready - Same APIs for humans, test scripts, CI pipelines, and AI agents
  • 💻 Cross-Platform - Supports Linux and macOS

Repository Structure

This monorepo contains all Jumpstarter components:

Directory Description
python/ Python client, CLI, drivers, and testing framework
controller/ Kubernetes controller and operator (Jumpstarter Service)
protocol/ gRPC protocol definitions (protobuf)
e2e/ End-to-end testing infrastructure

Quick Start

Install the CLI

pip install --extra-index-url https://pkg.jumpstarter.dev/ jumpstarter-cli

Or install all Python components:

pip install --extra-index-url https://pkg.jumpstarter.dev/ jumpstarter-all

Deploy the Service

To install the Jumpstarter Service in your Kubernetes cluster, see the Service Installation documentation.

Components

Python Client & Drivers (python/)

The Python implementation provides:

  • jmp CLI tool for interacting with hardware
  • Client libraries for test automation
  • Hardware drivers for various devices
  • Testing framework integration

See python/README.md for details.

Jumpstarter Service (controller/)

The Kubernetes-native service that provides:

  • Centralized hardware management
  • Client and exporter routing
  • Authentication and authorization
  • Multi-tenant support

Prerequisites:

See controller/README.md for deployment instructions.

Protocol (protocol/)

The gRPC-based communication layer that enables:

  • Unified interface for virtual and physical hardware
  • Secure communication over HTTPS
  • Tunneling support for Unix sockets, TCP, and UDP
  • Flexible topology with direct or routed connections

See protocol/README.md for details.

End-to-End Tests (e2e/)

Comprehensive testing infrastructure for the entire Jumpstarter stack:

  • setup-e2e.sh - One-time environment setup (auto-installs bats libraries on macOS)
  • run-e2e.sh - Quick test runner for iterations
  • action.yml - GitHub Actions composite action for CI/CD
  • Full integration tests covering authentication, exporters, and clients

Run e2e tests locally:

# First time setup
make e2e-setup

# Run tests (repeat as needed)
make e2e        # or: make e2e-run

# Or full setup + run in one command
make e2e-full

# Clean up e2e environment (delete cluster, certs, etc.)
make e2e-clean

Development

Prerequisites

  • Python (for Python components, see .py-version)
  • Go (for controller, see .go-version)
  • Docker/Podman (for container builds)
  • kubectl (version matching the k8s.io dependencies in controller/go.mod)

Building

# Build all components
make build

# Build specific components
make build-python      # Python packages
make build-controller  # Controller binary
make build-protocol    # Generate protocol code

# Run tests
make test

# Run end-to-end tests
make e2e-setup  # First time only
make e2e        # Run tests
make e2e-clean  # Clean up

Documentation

Jumpstarter's documentation is available at jumpstarter.dev.

Contributing

Jumpstarter welcomes contributors of all levels of experience! See the contributing guide to get started.

Community

License

Jumpstarter is licensed under the Apache 2.0 License (LICENSE or https://www.apache.org/licenses/LICENSE-2.0).