fix releaser tools
Some checks failed
Build / build (push) Successful in 10m0s
Test / build (push) Failing after 15m32s

This commit is contained in:
Chuck Smith
2024-03-24 12:23:19 -04:00
parent 005f3b6a13
commit 387bb80094
7 changed files with 93 additions and 28 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: dev build install image profile bench test clean
.PHONY: dev build install image release profile bench test clean
CGO_ENABLED=0
COMMIT=$(shell git rev-parse --short HEAD)
@@ -20,6 +20,9 @@ install: build
image:
@docker build -t prologic/monkey-lang .
release:
@./tools/release.sh
profile:
@go test -cpuprofile cpu.prof -memprofile mem.prof -v -bench ./...