forked from openshift-knative/serverless-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (23 loc) · 603 Bytes
/
Makefile
File metadata and controls
31 lines (23 loc) · 603 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Useful for local development
dev:
./hack/dev.sh
# General purpose targets
images:
./hack/images.sh $(DOCKER_REPO_OVERRIDE)
install:
./hack/install.sh
install-previous:
INSTALL_PREVIOUS_VERSION="true" ./hack/install.sh
teardown:
./hack/teardown.sh
# Test targets for CI operator
test-unit:
go test ./knative-operator/...
go test ./serving/ingress/...
test-e2e:
./test/e2e-tests.sh
test-upgrade:
./test/upgrade-tests.sh
# Generates a ci-operator configuration for a specific branch.
generate-ci-config:
./openshift/ci-operator/generate-ci-config.sh $(BRANCH) > ci-operator-config.yaml