2024-07-21 16:29:16 +00:00
|
|
|
#!/usr/bin/env sh
|
2026-06-06 07:03:26 +00:00
|
|
|
# CI build step (kept for the workflow's "Linux Build" name).
|
|
|
|
|
# Now uses modern Go from setup-go in the workflow.
|
2024-07-21 16:29:16 +00:00
|
|
|
|
2026-06-05 22:39:40 +00:00
|
|
|
set -e
|
2024-07-21 16:29:16 +00:00
|
|
|
|
2026-06-06 07:03:26 +00:00
|
|
|
echo "Running make build with Go: $(go version)"
|
2026-06-05 22:39:40 +00:00
|
|
|
make build
|
2024-07-21 16:29:16 +00:00
|
|
|
|