forked from perkeep/perkeep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (16 loc) · 651 Bytes
/
Makefile
File metadata and controls
22 lines (16 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# The normal way to build Perkeep is just "go run make.go", which
# doesn't require make. This file is mostly little convenient aliases
# and notes.
all:
go run make.go
presubmit: fmt
go install perkeep.org/dev/devcam
devcam test -short
fmt:
go fmt perkeep.org/cmd/... perkeep.org/dev/... perkeep.org/misc/... perkeep.org/pkg/... perkeep.org/server/... perkeep.org/internal/...
dockerbuild:
docker build --tag=gcr.io/perkeep-containers/perkeep:latest .
dockerbuilddev:
docker build --tag=gcr.io/perkeep-containers/perkeep-dev-$(USER):latest .
dockerpushdev: dockerbuilddev
docker push gcr.io/perkeep-containers/perkeep-dev-$(USER):latest