mirror of
https://github.com/TECHNOFAB11/dbmate.git
synced 2025-12-12 16:10:03 +01:00
Prior to this commit, we released two linux binaries: * `dbmate-linux-amd64` (built with cgo, dynamically linked) * `dbmate-linux-musl-amd64` (built without cgo, statically linked, no sqlite support) The statically linked binary is desirable for alpine linux users (or anyone else using musl libc or minimal docker images). The original reason for having two separate binaries was that the easiest method to create a static binary for go is to set `CGO_ENABLED=0`, but unfortunately this also prevented us from building sqlite (which requires cgo). With this commit, all linux and windows binaries are explicitly statically linked while leaving cgo enabled. Hat tip to https://www.arp242.net/static-go.html which explained the necessary flags to enable this. As an added bonus, the `dbmate` docker image now now uses a `scratch` base rather than `gcr.io/distroless/base`, reducing the image size from 26.7 MB to 9.8 MB.
59 lines
1.5 KiB
Makefile
59 lines
1.5 KiB
Makefile
# no static linking for macos
|
|
LDFLAGS := -ldflags '-s'
|
|
# statically link binaries (to support alpine + scratch containers)
|
|
STATICLDFLAGS := -ldflags '-s -extldflags "-static"'
|
|
# avoid building code that is incompatible with static linking
|
|
TAGS := -tags netgo,osusergo,sqlite_omit_load_extension
|
|
|
|
.PHONY: all
|
|
all: build lint test
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -v $(TAGS) $(STATICLDFLAGS) ./...
|
|
|
|
.PHONY: fix
|
|
fix:
|
|
golangci-lint run --fix
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
golangci-lint run
|
|
|
|
.PHONY: wait
|
|
wait:
|
|
dist/dbmate-linux-amd64 -e MYSQL_URL wait
|
|
dist/dbmate-linux-amd64 -e POSTGRESQL_URL wait
|
|
dist/dbmate-linux-amd64 -e CLICKHOUSE_URL wait
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf dist/*
|
|
|
|
.PHONY: build
|
|
build: clean build-linux-amd64
|
|
ls -lh dist
|
|
|
|
.PHONY: build-linux-amd64
|
|
build-linux-amd64:
|
|
GOOS=linux GOARCH=amd64 \
|
|
go build $(TAGS) $(STATICLDFLAGS) -o dist/dbmate-linux-amd64 .
|
|
|
|
.PHONY: build-all
|
|
build-all: clean build-linux-amd64
|
|
GOOS=linux GOARCH=arm64 CC=aarch64-linux-gnu-gcc-5 CXX=aarch64-linux-gnu-g++-5 \
|
|
go build $(TAGS) $(STATICLDFLAGS) -o dist/dbmate-linux-arm64 .
|
|
GOOS=darwin GOARCH=amd64 CC=o64-clang CXX=o64-clang++ \
|
|
go build $(TAGS) $(LDFLAGS) -o dist/dbmate-macos-amd64 .
|
|
GOOS=windows GOARCH=amd64 CC=x86_64-w64-mingw32-gcc-posix CXX=x86_64-w64-mingw32-g++-posix \
|
|
go build $(TAGS) $(STATICLDFLAGS) -o dist/dbmate-windows-amd64.exe .
|
|
ls -lh dist
|
|
|
|
.PHONY: docker-make
|
|
docker-make:
|
|
docker-compose build
|
|
docker-compose run --rm dbmate make
|
|
|
|
.PHONY: docker-bash
|
|
docker-bash:
|
|
-docker-compose run --rm dbmate bash
|