@@ -24,28 +24,28 @@ DOCKER_RUN_LIBCOMPOSE := docker run --rm -i $(TTY) --privileged -e DAEMON_VERSIO
24
24
default : binary
25
25
26
26
all : build # # validate all checks, build linux binary, run all tests\ncross build non-linux binaries
27
- $(DOCKER_RUN_LIBCOMPOSE ) ./script /make.sh
27
+ $(DOCKER_RUN_LIBCOMPOSE ) ./hack /make.sh
28
28
29
29
binary : build # # build the linux binary
30
- $(DOCKER_RUN_LIBCOMPOSE ) ./script /make.sh binary
30
+ $(DOCKER_RUN_LIBCOMPOSE ) ./hack /make.sh binary
31
31
32
32
cross-binary : build # # cross build the non linux binaries (windows, darwin)
33
- $(DOCKER_RUN_LIBCOMPOSE ) ./script /make.sh cross-binary
33
+ $(DOCKER_RUN_LIBCOMPOSE ) ./hack /make.sh cross-binary
34
34
35
35
test : build # # run the unit, integration and acceptance tests
36
- $(DOCKER_RUN_LIBCOMPOSE ) ./script /make.sh binary test-unit test-integration test-acceptance
36
+ $(DOCKER_RUN_LIBCOMPOSE ) ./hack /make.sh binary test-unit test-integration test-acceptance
37
37
38
38
test-unit : build # # run the unit tests
39
- $(DOCKER_RUN_LIBCOMPOSE ) ./script /make.sh test-unit
39
+ $(DOCKER_RUN_LIBCOMPOSE ) ./hack /make.sh test-unit
40
40
41
41
test-integration : build # # run the integration tests
42
- $(DOCKER_RUN_LIBCOMPOSE ) ./script /make.sh binary test-integration
42
+ $(DOCKER_RUN_LIBCOMPOSE ) ./hack /make.sh binary test-integration
43
43
44
44
test-acceptance : build # # run the acceptance tests
45
- $(DOCKER_RUN_LIBCOMPOSE ) ./script /make.sh binary test-acceptance
45
+ $(DOCKER_RUN_LIBCOMPOSE ) ./hack /make.sh binary test-acceptance
46
46
47
47
validate : build # # validate DCO, git conflicts marks, gofmt, golint and go vet
48
- $(DOCKER_RUN_LIBCOMPOSE ) ./script /make.sh validate-dco validate-git-marks validate-gofmt validate-lint validate-vet
48
+ $(DOCKER_RUN_LIBCOMPOSE ) ./hack /make.sh validate-dco validate-git-marks validate-gofmt validate-lint validate-vet
49
49
50
50
shell : build # # start a shell inside the build env
51
51
$(DOCKER_RUN_LIBCOMPOSE ) bash
@@ -58,7 +58,7 @@ bundles:
58
58
mkdir bundles
59
59
60
60
clean :
61
- $(DOCKER_RUN_LIBCOMPOSE ) ./script /make.sh clean
61
+ $(DOCKER_RUN_LIBCOMPOSE ) ./hack /make.sh clean
62
62
63
63
help : # # this help
64
64
@awk ' BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST )
0 commit comments