This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

Add Brewfile

Signed-off-by: Xe Iaso <me@xeiaso.net>

+19
+3
Brewfile
··· 1 + brew "go@1.24" 2 + brew "helm" 3 + brew "yoke"
+16
build.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + set -euo pipefail 4 + 5 + function go_build() { 6 + goarch="$1" 7 + goos="$2" 8 + 9 + shift 2 10 + 11 + GOARCH=$goarch GOOS=$goos go build $* 12 + } 13 + 14 + go_build wasm wasip1 -o hypercloud-installer.wasm ./cmd/hypercloud-installer 15 + 16 + gzip -f *.wasm