ARO-RP/Makefile

123 строки
4.5 KiB
Makefile
Исходник Обычный вид История

SHELL = /bin/bash
2019-11-30 16:51:47 +03:00
COMMIT = $(shell git rev-parse --short HEAD)$(shell [[ $$(git status --porcelain) = "" ]] || echo -dirty)
ARO_IMAGE ?= ${RP_IMAGE_ACR}.azurecr.io/aro:$(COMMIT)
2019-11-30 16:51:47 +03:00
ifneq ($(shell uname -s),Darwin)
export CGO_CFLAGS=-Dgpgme_off_t=off_t
endif
2020-08-10 15:25:30 +03:00
2019-12-22 20:47:29 +03:00
aro: generate
go build -ldflags "-X github.com/Azure/ARO-RP/pkg/util/version.GitCommit=$(COMMIT)" ./cmd/aro
2019-11-18 09:24:26 +03:00
az: pyenv
. pyenv/bin/activate && \
cd python/az/aro && \
python ./setup.py bdist_egg && \
python ./setup.py bdist_wheel || true && \
rm -f ~/.azure/commandIndex.json # https://github.com/Azure/azure-cli/issues/1499
2019-11-18 09:24:26 +03:00
clean:
2019-12-22 20:47:29 +03:00
rm -rf python/az/aro/{aro.egg-info,build,dist} aro
find python -type f -name '*.pyc' -delete
find python -type d -name __pycache__ -delete
2019-11-18 09:24:26 +03:00
2019-12-11 15:06:19 +03:00
client: generate
hack/build-client.sh 2021-01-31-preview
2019-12-03 14:33:55 +03:00
2019-12-11 15:06:19 +03:00
generate:
go generate ./...
image-aro: aro e2e.test
2019-12-22 20:25:31 +03:00
docker pull registry.access.redhat.com/ubi8/ubi-minimal
docker build --no-cache -f Dockerfile.aro -t $(ARO_IMAGE) .
2019-12-29 17:49:38 +03:00
2020-02-28 07:04:37 +03:00
image-fluentbit:
docker build --no-cache --build-arg VERSION=1.3.9-1 \
-f Dockerfile.fluentbit -t ${RP_IMAGE_ACR}.azurecr.io/fluentbit:1.3.9-1 .
2020-02-28 07:04:37 +03:00
2019-12-29 17:49:38 +03:00
image-proxy: proxy
docker pull registry.access.redhat.com/ubi8/ubi-minimal
docker build --no-cache -f Dockerfile.proxy -t ${RP_IMAGE_ACR}.azurecr.io/proxy:latest .
2020-06-25 03:33:31 +03:00
image-routefix:
docker pull registry.access.redhat.com/ubi8/ubi
docker build --no-cache -f Dockerfile.routefix -t ${RP_IMAGE_ACR}.azurecr.io/routefix:$(COMMIT) .
2020-06-25 03:33:31 +03:00
publish-image-aro: image-aro
docker push $(ARO_IMAGE)
ifeq ("${RP_IMAGE_ACR}-$(BRANCH)","arointsvc-master")
docker tag $(ARO_IMAGE) arointsvc.azurecr.io/aro:latest
docker push arointsvc.azurecr.io/aro:latest
endif
publish-image-fluentbit: image-fluentbit
docker push ${RP_IMAGE_ACR}.azurecr.io/fluentbit:1.3.9-1
publish-image-proxy: image-proxy
docker push ${RP_IMAGE_ACR}.azurecr.io/proxy:latest
2019-12-29 17:49:38 +03:00
2020-06-25 03:33:31 +03:00
publish-image-routefix: image-routefix
docker push ${RP_IMAGE_ACR}.azurecr.io/routefix:$(COMMIT)
2019-12-29 17:49:38 +03:00
proxy:
go build -ldflags "-X github.com/Azure/ARO-RP/pkg/util/version.GitCommit=$(COMMIT)" ./hack/proxy
2019-11-18 09:24:26 +03:00
2020-10-08 03:04:39 +03:00
pyenv:
virtualenv pyenv
. pyenv/bin/activate && \
pip install autopep8 azdev azure-mgmt-loganalytics==0.2.0 ruamel.yaml wheel && \
2019-12-16 19:52:17 +03:00
azdev setup -r . && \
sed -i -e "s|^dev_sources = $(PWD)$$|dev_sources = $(PWD)/python|" ~/.azure/config
2019-12-04 16:17:27 +03:00
secrets:
2020-02-27 16:34:46 +03:00
@[ "${SECRET_SA_ACCOUNT_NAME}" ] || ( echo ">> SECRET_SA_ACCOUNT_NAME is not set"; exit 1 )
2019-12-04 16:17:27 +03:00
rm -rf secrets
2020-02-27 16:35:25 +03:00
az storage blob download --auth-mode login -n secrets.tar.gz -c secrets -f secrets.tar.gz --account-name ${SECRET_SA_ACCOUNT_NAME} >/dev/null
tar -xzf secrets.tar.gz
rm secrets.tar.gz
2019-12-04 16:17:27 +03:00
secrets-update:
2020-02-27 16:34:46 +03:00
@[ "${SECRET_SA_ACCOUNT_NAME}" ] || ( echo ">> SECRET_SA_ACCOUNT_NAME is not set"; exit 1 )
2020-02-27 16:35:25 +03:00
tar -czf secrets.tar.gz secrets
2020-08-10 15:25:30 +03:00
az storage blob upload -n secrets.tar.gz -c secrets -f secrets.tar.gz --account-name ${SECRET_SA_ACCOUNT_NAME} >/dev/null
2020-02-27 16:34:46 +03:00
rm secrets.tar.gz
2019-12-04 16:17:27 +03:00
e2e.test:
go test ./test/e2e -tags e2e -c -o e2e.test
test-e2e: e2e.test
./e2e.test -test.timeout 180m -test.v -ginkgo.v
2020-01-23 09:25:27 +03:00
test-go: generate
go build ./...
2020-01-24 02:55:22 +03:00
gofmt -s -w cmd hack pkg test
go run ./vendor/golang.org/x/tools/cmd/goimports -w -local=github.com/Azure/ARO-RP cmd hack pkg test
go run ./hack/validate-imports cmd hack pkg test
go run ./hack/licenses
@[ -z "$$(ls pkg/util/*.go 2>/dev/null)" ] || (echo error: go files are not allowed in pkg/util, use a subpackage; exit 1)
@[ -z "$$(find -name "*:*")" ] || (echo error: filenames with colons are not allowed on Windows, please rename; exit 1)
2019-12-02 14:04:46 +03:00
@sha256sum --quiet -c .sha256sum || (echo error: client library is stale, please run make client; exit 1)
go test -tags e2e -run ^$$ ./test/e2e/...
go vet ./...
set -o pipefail && go test -v ./... -coverprofile cover.out | tee uts.txt
2019-11-21 05:32:34 +03:00
2020-11-14 03:07:17 +03:00
lint-go:
go run ./vendor/github.com/golangci/golangci-lint/cmd/golangci-lint run
test-python: generate pyenv az
2020-10-08 03:04:39 +03:00
. pyenv/bin/activate && \
azdev linter && \
2020-04-03 20:01:00 +03:00
azdev style && \
hack/format-yaml/format-yaml.py .pipelines
2020-03-12 05:45:32 +03:00
admin.kubeconfig:
hack/get-admin-kubeconfig.sh /subscriptions/${AZURE_SUBSCRIPTION_ID}/resourceGroups/${RESOURCEGROUP}/providers/Microsoft.RedHatOpenShift/openShiftClusters/${CLUSTER} >admin.kubeconfig
2020-03-11 01:22:20 +03:00
vendor:
2020-11-17 12:55:24 +03:00
# https://groups.google.com/forum/#!topic/golang-nuts/51-D_YFC78k
hack/update-go-module-dependencies.sh
2020-11-14 03:07:17 +03:00
.PHONY: admin.kubeconfig aro az clean client generate image-aro image-fluentbit image-proxy image-routefix lint-go proxy publish-image-aro publish-image-fluentbit publish-image-proxy publish-image-routefix secrets secrets-update e2e.test test-e2e test-go test-python vendor