aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-12 22:38:02 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-12 22:38:04 +0200
commit1f04e6ff0678dbcbaeccc042810c9e81dd11807b (patch)
tree1186c381aca0bc5a18a36cc2079bffa1da36486a
parentadd DEVELOPMENT.md (diff)
downloadcgitize-1f04e6ff0678dbcbaeccc042810c9e81dd11807b.tar.gz
cgitize-1f04e6ff0678dbcbaeccc042810c9e81dd11807b.zip
Makefile: remove unused recipes
I don't like this, but they really were unused for a long time. In any case, it'll be easy to bring them back.
-rw-r--r--Makefile89
1 files changed, 0 insertions, 89 deletions
diff --git a/Makefile b/Makefile
index 0622bc1..0d7ad33 100644
--- a/Makefile
+++ b/Makefile
@@ -1,95 +1,6 @@
include prelude.mk
-.PHONY: DO
-DO:
-
PROJECT := cgitize
-# Target platforms (used by buildx):
-PLATFORMS := amd64,armhf,arm64
-# Docker Hub credentials:
-DOCKER_USERNAME := egortensin
-# This is still required with older Compose versions to use TARGETARCH:
-export DOCKER_BUILDKIT := 1
-
-ifdef DOCKER_PASSWORD
-$(eval $(call noexpand,DOCKER_PASSWORD))
-endif
-
-.PHONY: all
-all: build
-
-.PHONY: login
-login:
-ifndef DOCKER_PASSWORD
- $(error Please define DOCKER_PASSWORD)
-endif
- @echo '$(call escape,$(DOCKER_PASSWORD))' \
- | docker login --username '$(call escape,$(DOCKER_USERNAME))' --password-stdin
-
-.PHONY: build
-# Build natively by default.
-build: compose/build
-
-.PHONY: clean
-clean:
- docker system prune --all --force --volumes
-
-.PHONY: push
-# Push multi-arch images by default.
-push: buildx/push
-
-.PHONY: check-build
-check-build:
-ifndef FORCE
- $(warning Going to build natively; consider `docker buildx build` instead)
-endif
-
-.PHONY: check-push
-check-push:
-ifndef FORCE
- $(error Please use `docker buildx build --push` instead)
-endif
-
-.PHONY: compose/build
-# `docker-compose build` has week support for multiarch repos (you need to use
-# multiple Dockerfile's, create a manifest manually, etc.), so it's only here
-# for testing purposes, and native builds.
-compose/build: check-build
- docker-compose build --progress plain
-
-.PHONY: compose/push
-# `docker-compose push` would replace the multiarch repo with a single image by
-# default (you'd have to create a manifest and push it instead), so it's only
-# here for testing purposes.
-compose/push: check-push compose/build
- docker-compose push
-
-.PHONY: buildx/create
-buildx/create:
- docker buildx create --use --name '$(call escape,$(PROJECT))_builder'
-
-.PHONY: buildx/rm
-buildx/rm:
- docker buildx rm '$(call escape,$(PROJECT))_builder'
-
-.PHONY: buildx/build
-buildx/build:
- docker buildx build \
- -t '$(call escape,$(DOCKER_USERNAME)/$(PROJECT))' \
- -f docker/Dockerfile \
- --platform '$(call escape,$(PLATFORMS))' \
- --progress plain \
- .
-
-.PHONY: buildx/push
-buildx/push:
- docker buildx build \
- -t '$(call escape,$(DOCKER_USERNAME)/$(PROJECT))' \
- -f docker/Dockerfile \
- --platform '$(call escape,$(PLATFORMS))' \
- --progress plain \
- --push \
- .
venv_dir := .venv
venv_activate := . '$(call escape,$(venv_dir)/bin/activate)'