Skip to content

Commit

Permalink
chore(packaging): loki windows/amd64 (#981)
Browse files Browse the repository at this point in the history
Builds the loki server binary for windows as well
  • Loading branch information
sh0rez authored Sep 6, 2019
1 parent b74db24 commit bed1f68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ cmd/promtail/promtail-debug: $(APP_GO_FILES) pkg/promtail/server/ui/assets_vfsda
# concurrency is limited to 4 to prevent CircleCI from OOMing. Sorry
GOX = gox $(GO_FLAGS) -parallel=4 -output="dist/{{.Dir}}-{{.OS}}-{{.Arch}}" -arch="amd64 arm64 arm" -os="linux"
dist: clean
CGO_ENABLED=0 $(GOX) ./cmd/loki
CGO_ENABLED=0 $(GOX) -osarch="windows/amd64" ./cmd/loki
CGO_ENABLED=0 $(GOX) -osarch="darwin/amd64 windows/amd64 freebsd/amd64" ./cmd/promtail ./cmd/logcli
gzip dist/*
pushd dist && sha256sum * > SHA256SUMS && popd
Expand Down

0 comments on commit bed1f68

Please sign in to comment.