Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-02-17 11:36:26 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-02-17 12:36:47 +0300
commit3587a408cbfe92ceb6e9cf7178568ce919b05f28 (patch)
treee9debcfd91349dfb32966106337cb747308a6391
parent2e496084f31e2f8aab5cc7e48752bc7e2ceb2897 (diff)
Makefile: Remove broken Dockerfile target
While the infrastructure to build Docker containers has been removed in cd1f35eda (docker: Remove image generation, 2021-01-21), the Makefile to do this still exists. It's broken, so this commit just removes it now.
-rw-r--r--Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index c1657a8b9..175aeeae8 100644
--- a/Makefile
+++ b/Makefile
@@ -321,19 +321,6 @@ cover: prepare-tests libgit2 ${GOCOVER_COBERTURA}
${Q}echo ""
${Q}go tool cover -func "${COVERAGE_DIR}/all.merged"
-.PHONY: docker
-docker:
- ${Q}rm -rf ${BUILD_DIR}/docker/
- ${Q}mkdir -p ${BUILD_DIR}/docker/bin/
- ${Q}rm -rf ${GITALY_RUBY_DIR}/tmp
- cp -r ${GITALY_RUBY_DIR} ${BUILD_DIR}/docker/ruby
- ${Q}rm -rf ${BUILD_DIR}/docker/ruby/vendor/bundle
- for command in $(call find_commands); do \
- GOOS=linux GOARCH=amd64 go build -tags "${GO_BUILD_TAGS}" ${GO_LDFLAGS} -o "${BUILD_DIR}/docker/bin/$${command}" ${GITALY_PACKAGE}/cmd/$${command}; \
- done
- cp ${SOURCE_DIR}/Dockerfile ${BUILD_DIR}/docker/
- docker build -t gitlab/gitaly:v${GITALY_VERSION} -t gitlab/gitaly:latest ${BUILD_DIR}/docker/
-
.PHONY: proto
proto: ${PROTOC} ${PROTOC_GEN_GO} ${SOURCE_DIR}/.ruby-bundle
${Q}mkdir -p ${SOURCE_DIR}/proto/go/gitalypb