File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 4
4
- Improve deprecated notice for old passthrough flags
5
5
- Improve detection of arangod binary when running local installation (use --server.use-local-bin)
6
6
- Upgrade base Alpine image and Go dependencies to fix CVEs
7
+ - Remove ` netgo ` build tag for Windows to disable new Go resolver behaviour: https://github.com/golang/go/issues/57757
7
8
8
9
## [ 0.15.6] ( https://github.com/arangodb-helper/arangodb/tree/0.15.6 ) (2023-01-20)
9
10
- Fix restarting cluster with arangosync enabled
Original file line number Diff line number Diff line change @@ -162,7 +162,11 @@ binaries-test:
162
162
163
163
$(BIN ) : $(GOBUILDDIR ) $(GO_SOURCES )
164
164
@mkdir -p $(BINDIR )
165
+ ifeq ($(GOOS ) ,windows)
166
+ $(DOCKER_CMD) go build -ldflags "-X main.projectVersion=$(VERSION) -X main.projectBuild=$(COMMIT)" -o "$(BUILD_BIN)" .
167
+ else
165
168
$(DOCKER_CMD) go build -installsuffix netgo -tags netgo -ldflags "-X main.projectVersion=$(VERSION) -X main.projectBuild=$(COMMIT)" -o "$(BUILD_BIN)" .
169
+ endif
166
170
167
171
$(TESTBIN ) : $(GOBUILDDIR ) $(TEST_SOURCES ) $(BIN )
168
172
@mkdir -p $(BINDIR )
You can’t perform that action at this time.
0 commit comments