chore(dev): ensure project compiles on darwin and windows

This commit is contained in:
Quentin McGaw
2026-02-09 15:40:45 +00:00
parent 5f0c499808
commit b0a75673bd
6 changed files with 16 additions and 0 deletions
+4
View File
@@ -46,6 +46,10 @@ RUN git init && \
git diff --exit-code && \
rm -rf .git/
FROM --platform=${BUILDPLATFORM} base AS xcompile
RUN GOOS=darwin go build -o /dev/null ./...
RUN GOOS=windows go build -o /dev/null ./...
FROM --platform=${BUILDPLATFORM} base AS build
ARG TARGETPLATFORM
ARG VERSION=unknown