Skip to content

v0.9.2

Latest

Choose a tag to compare

@github-actions github-actions released this 08 Jul 08:36
· 1 commit to main since this release
5e51cf1

Changed

  • The repository moved from jamiesun/scoot to the
    scootship organization
    (scootship/scoot). All references
    were updated accordingly ([#202]): the release workflow now publishes to
    scootship/homebrew-tap and scootship/apt-tap, install.sh defaults to
    scootship/scoot, and the install instructions across the README, release
    footer, and bilingual docs use brew install scootship/tap/... and the
    scootship.github.io/apt-tap apt source.

Install

curl -fsSL https://raw.githubusercontent.com/scootship/scoot/main/install.sh | sh

Add SCOOT_INSTALL_EDGE=1 to the same command to also install the optional
scoot-edge fleet companion (never installed unless requested).

macOS (Homebrew):

brew install scootship/tap/scoot          # the agent
brew install scootship/tap/scoot-wasm      # optional Wasm compute-unit host (pulls in scoot)
brew install scootship/tap/scoot-edge      # optional fleet companion (pulls in scoot)

Debian/Ubuntu (apt, amd64/arm64/armhf):

curl -fsSL https://scootship.github.io/apt-tap/pubkey.gpg | sudo gpg --dearmor -o /usr/share/keyrings/scootship-apt-tap.gpg
echo "deb [signed-by=/usr/share/keyrings/scootship-apt-tap.gpg] https://scootship.github.io/apt-tap stable main" | sudo tee /etc/apt/sources.list.d/scootship-apt-tap.list
sudo apt update
sudo apt install scoot          # the agent
sudo apt install scoot-wasm     # optional Wasm compute-unit host (pulls in scoot)
sudo apt install scoot-edge     # optional fleet companion (pulls in scoot)

Build flavors

Prebuilt archives are ReleaseSafe only (runtime safety checks on). If you
need a smaller binary, compile from source:

zig build -Doptimize=ReleaseSmall   # smallest, fewer safety checks

Each target also ships a separate scoot-wasm-* archive (the optional
standalone Wasm host) and a separate scoot-edge-* archive (the optional
fleet companion). The zero-dependency core scoot binary never embeds either.