actiond

(★ 37)

A fully hermetic local "remote executor"

File Explorer

  • .bazelignore
  • .bazelrc
  • .bazelversion
  • .gitignore
  • AGENTS.md
  • ARCHITECTURE.md
  • bazel_downloader.cfg
  • BUILD.bazel
  • MODULE.bazel
  • MODULE.bazel.lock
  • README.md
  • release.sh

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

bazel

View Details ▼

Open-source build and test tool similar to Make, Maven, and Gradle.

bazel build {{target}}

Build the specified target in the workspace:

bazel clean

Remove output files and stop the server if running:

bazel shutdown

Stop the bazel server:

🔍

modprobe

View Details ▼

Add or remove modules from the Linux kernel.
See also: `kmod`.

modprobe {{[-n|--dry-run]}} {{module_name}}

Pretend to load a module into the kernel, but don't actually do it:

sudo modprobe {{module_name}}

Load a module into the kernel:

sudo modprobe {{[-r|--remove]}} {{module_name}}

Remove a module from the kernel:

// repository documentation