File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 17
17
.PHONY : all \
18
18
vet fmt version test e2e-test \
19
19
build-binaries build-container build-tar build \
20
- docker-builder build-in-docker push-container push-tar push clean depup
20
+ docker-builder build-in-docker \
21
+ push-container push-tar push release clean depup
21
22
22
23
all : build
23
24
@@ -268,8 +269,12 @@ push-tar: build-tar
268
269
gsutil cp $(TARBALL ) $(UPLOAD_PATH ) /node-problem-detector/
269
270
gsutil cp node-problem-detector-$(VERSION ) -* .tar.gz* $(UPLOAD_PATH ) /node-problem-detector/
270
271
272
+ # `make push` is used by presubmit and CI jobs.
271
273
push : push-container push-tar
272
274
275
+ # `make release` is used when releasing a new NPD version.
276
+ release : push-container build-tar
277
+
273
278
coverage.out :
274
279
rm -f coverage.out
275
280
go test -coverprofile=coverage.out -timeout=1m -v -short ./...
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ section to perform steps in this section.**
58
58
sudo apt-get install libsystemd-dev gcc-aarch64-linux-gnu
59
59
60
60
cd node-problem-detector
61
- make push
61
+ make release
62
62
63
63
# Get SHA256 of the tar files. For example
64
64
sha256sum node-problem-detector-v0.8.17-linux_amd64.tar.gz
You can’t perform that action at this time.
0 commit comments