mirror of
https://github.com/lukaszraczylo/filepuff-mcp.git
synced 2026-06-05 22:23:50 +00:00
build(goreleaser): enable CGO and remove Docker builds
- [x] Enable CGO_ENABLED=1 for builds - [x] Add platform ignore rules for unsupported architectures - [x] Remove Docker build configuration (dockers_v2) - [x] Remove Docker signing configuration - [x] Add platform compatibility check in install script
This commit is contained in:
@@ -59,6 +59,13 @@ detect_platform() {
|
||||
;;
|
||||
esac
|
||||
|
||||
# Warn about unsupported combinations
|
||||
if [ "$os" = "linux" ] && [ "$arch" = "arm64" ]; then
|
||||
print_error "Linux ARM64 builds are not currently available due to CGO cross-compilation complexity"
|
||||
print_error "Please build from source: https://github.com/lukaszraczylo/filepuff-mcp#build-from-source"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "${os}_${arch}"
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user