Skip to content

Commit

Permalink
Removed windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
warmans committed Jul 4, 2024
1 parent 507be57 commit 726adf8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/server-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,6 @@ jobs:
GOOS: darwin
GOARCH: amd64

- name: Build Windows x86
working-directory: ${{env.working-directory}}
run: make build-arch
env:
GOOS: windows
GOARCH: amd64

- name: Create Release
uses: actions/create-release@v1
id: create_release
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ endif
ifndef GOARCH
echo "GOARCH must be defined"; exit 1;
endif
echo ">> building linux binary"
echo ">> building $(GOOS) $(GOARCH) binary"
env GOOS=$(GOOS) GOARCH=$(GOARCH) go build -o ${BIN_DIR}/prometheus-aggregate-exporter-$(GOOS)-$(GOARCH) -ldflags "-X main.Version=${GIT_TAG}" ./cmd

# Manual Testing
Expand Down

0 comments on commit 726adf8

Please sign in to comment.