- ci-build.sh for parity with gostations (Linux Build step in workflow) - scripts/gralculator-install.sh and .ps1 modeled directly on gostations (platform detection, download, checksum verify with sha256sum/shasum, extract, install to ~/.local/bin, versioned) - Updated build.yml: Linux Build now calls ./ci-build.sh; added lint job (golangci-lint-action@v7 v2.1.6 like grokkit) after test, build now needs [test, lint] - release.yml already prepared to include the scripts if present - All modeled closely on gostations/grokkit for consistency
9 lines
201 B
Bash
Executable File
9 lines
201 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# CI build step (kept for the workflow's "Linux Build" name).
|
|
# Now uses modern Go from setup-go in the workflow.
|
|
|
|
set -e
|
|
|
|
echo "Running make build with Go: $(go version)"
|
|
make build
|