Skip to content
This repository was archived by the owner on Apr 25, 2025. It is now read-only.

Commit 57d9f17

Browse files
committed
Update default org
Signed-off-by: Raul Sevilla <[email protected]>
1 parent 26ccfd5 commit 57d9f17

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

Makefile

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,21 @@
22

33
.PHONY: all build test clean help
44

5-
BUILD_DATE=$(shell date '+%Y-%m-%d-%H:%M:%S')
6-
GIT_COMMIT=$(shell git rev-parse HEAD)
7-
GIT_DIRTY=$(shell test -n "`git status --porcelain`" && echo "+CHANGES" || true)
85
SRC=$(shell find . -name *.go)
96
BINARY=perfApp-$(ARCH)
107
GOCMD=go
11-
GOBUILD=$(GOCMD) build
12-
GOCLEAN=$(GOCMD) clean
13-
GOTEST=$(GOCMD) test -v
148
ARCH ?= amd64
159
GOOS ?= linux
1610
GO_BUILD_RECIPE:=GOOS=$(GOOS) CGO_ENABLED=0 GOARCH=$(ARCH) go build
1711
ENGINE=podman
1812
REGISTRY=quay.io
19-
PROJECT=rsevilla
13+
ORG?=cloud-bulldozer
2014
IMAGE=perfapp
2115

2216
# Container versioning
2317
VERSION?=latest
2418
TAG?=$(VERSION)-$(ARCH)
25-
CONTAINER_NAME=$(REGISTRY)/$(PROJECT)/$(IMAGE):$(TAG)
19+
CONTAINER_NAME=$(REGISTRY)/$(ORG)/$(IMAGE):$(TAG)
2620

2721
all: build buildContainer pushContainer
2822

0 commit comments

Comments
 (0)