Files
tchivert ad8e69bdac
build / build (push) Successful in 1m13s
update to go1.26
2026-02-11 00:46:32 +01:00

20 lines
338 B
Makefile

all: build
build:
CGO_ENABLED=0 go build -trimpath -ldflags="-s -w" -o rdu ./src
build-dev:
CGO_ENABLED=0 GOEXPERIMENT=goroutineleakprofile go build -trimpath -ldflags="-s -w" -o rdu ./src
run: build
./rdu
release:
git tag -d latest
git push --delete origin latest
git tag latest HEAD
git push origin latest
clean:
rm -f rdu