You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: system_tests/Makefile
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,20 @@
2
2
# a `git clone` which can not be cached.
3
3
DOCKER_FLAGS ?= --no-cache
4
4
5
+
ifndefGOOGLE_APPLICATION_CREDENTIALS
6
+
$(error GOOGLE_APPLICATION_CREDENTIALS is not set; download service account credentials in JSON format from the Google Cloud Console and invoke make with something like GOOGLE_APPLICATION_CREDENTIALS=/path/to/credentials.json)
7
+
endif
8
+
9
+
ifndefGOOGLE_CLOUD_PROJECT
10
+
$(error GOOGLE_CLOUD_PROJECT is not set; invoke make with something like GOOGLE_CLOUD_PROJECT=my-project-name)
11
+
endif
12
+
13
+
5
14
.PHONY: all
6
15
all: Dockerfile
7
-
docker build $(DOCKER_FLAGS).
16
+
@echo "Running system tests in project ${GOOGLE_CLOUD_PROJECT} using service account credentials from ${GOOGLE_APPLICATION_CREDENTIALS}"
0 commit comments