Update cicd

Former-commit-id: 25b58e868b
This commit is contained in:
Owen
2025-07-29 09:47:33 -07:00
parent c25d77597d
commit 63933b57fc
2 changed files with 11 additions and 39 deletions

View File

@@ -1,22 +1,5 @@
all: build push
docker-build-release:
@if [ -z "$(tag)" ]; then \
echo "Error: tag is required. Usage: make build-all tag=<tag>"; \
exit 1; \
fi
docker buildx build --platform linux/arm64,linux/amd64 -t fosrl/olm:latest -f Dockerfile --push .
docker buildx build --platform linux/arm64,linux/amd64 -t fosrl/olm:$(tag) -f Dockerfile --push .
build:
docker build -t fosrl/olm:latest .
push:
docker push fosrl/olm:latest
test:
docker run fosrl/olm:latest
all: go-build-release
local:
CGO_ENABLED=0 go build -o olm
@@ -29,4 +12,4 @@ go-build-release:
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o bin/olm_windows_amd64.exe
clean:
rm olm
rm olm