hs-test: fix install/build on new ubuntu instance
[vpp.git] / extras / hs-test / Makefile
index c50e681..c4eadab 100644 (file)
@@ -1,13 +1,16 @@
 all: build docker
 
+install-dep:
+       apt update -y && apt install -y golang docker-ce apache2-utils wrk bridge-utils
+
 build:
        go build ./tools/http_server
-       go build .
 
 docker:
        bash ./script/build.sh
 
 fixstyle:
        @gofmt -w .
+       @go mod tidy
 
 .PHONY: docker