Skip to content
github-actions[bot] edited this page May 15, 2026 · 4 revisions

Build

Local builds use the root build.ps1, which stages the same shape as a release zip.

Requirements

  • Rust stable.
  • CMake.
  • Ninja.
  • ARM GNU Toolchain with arm-none-eabi-gcc on PATH.
  • PowerShell 7 or Windows PowerShell.

Build Everything

.\build.ps1

Output:

dist\ParsecCouchLink\couchlink.exe
dist\ParsecCouchLink\couchlink-pico.uf2
dist\ParsecCouchLink\setup.ps1

Build A Release Zip

.\build.ps1 -Package

Output:

dist\ParsecCouchLink-v<version>.zip
dist\ParsecCouchLink-v<version>.manifest.tsv

The manifest lists each file in the zip with size and SHA-256.

Build Only One Side

Rebuild just the Windows bridge:

.\build.ps1 -SkipPico

Rebuild just the Pico firmware after a bridge build already exists:

.\build.ps1 -SkipBridge

The Pico helper can also be run directly:

cd pico-bridge
.\scripts\build.ps1 -Release

GitHub Workflows

  • ci.yml checks the Rust bridge and builds the Pico firmware.
  • release.yml builds the release zip on v* tags and publishes it.
  • wiki-sync.yml mirrors wiki/ to the GitHub Wiki.

Clone this wiki locally