Skip to content

Commit

Permalink
remove debug related commands from Makefile
Browse files Browse the repository at this point in the history
Signed-off-by: Shahriyar Jalayeri <[email protected]>
  • Loading branch information
shjala committed Aug 15, 2024
1 parent e8a03f7 commit 4fb4971
Showing 1 changed file with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions tests/aziot/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ build: setup

testbin: $(TESTBIN)
$(LOCALTESTBIN): $(BINDIR) *.go
CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go test -c -gcflags "all=-N -l" -o $@ *.go
CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) go test -c -ldflags "-s -w" -o $@ *.go

$(TESTBIN): $(LOCALTESTBIN)
ln -sf $(LOCALTESTBIN) $(CURDIR)/$(TESTBIN)
Expand All @@ -55,21 +55,7 @@ setup: testbin $(BINDIR) $(DATADIR)
cp -a $(LOCALTESTBIN) $(CURDIR)/$(TESTBIN) $(BINDIR)
cp -a *.yml $(TESTSCN) $(DATADIR)

debug: build
dlv dap --listen=:12345

eden:
cd ../../ && \
make clean && \
make eden && \
./eden config add default && \
./eden config set default --key redis.port --value 4444 && \
./eden config set default --key eden.eserver.port --value 5555 && \
./eden setup && \
./eden start && \
./eden eve onboard

.PHONY: test build setup clean all testbin debug eden
.PHONY: test build setup clean all testbin debug

help:
@echo "EDEN is the harness for testing EVE and ADAM"
Expand Down

0 comments on commit 4fb4971

Please sign in to comment.