This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/master by this push:
new 98289df41f fix #2096: add sane default for GCP_KEY (#2097)
98289df41f is described below
commit 98289df41f1b91326c4de68509947ce23fb52a36
Author: Hans Van Akelyen <[email protected]>
AuthorDate: Thu Dec 22 11:11:18 2022 +0100
fix #2096: add sane default for GCP_KEY (#2097)
* fix #2096: add sane default for GCP_KEY
* fix #2096: remove typo
---
docker/integration-tests/integration-tests-base.yaml | 2 +-
docker/integration-tests/resource/dummyfile | 17 +++++++++++++++++
integration-tests/scripts/run-tests-docker.sh | 2 +-
3 files changed, 19 insertions(+), 2 deletions(-)
diff --git a/docker/integration-tests/integration-tests-base.yaml
b/docker/integration-tests/integration-tests-base.yaml
index b1c912c269..a6a4b53e41 100644
--- a/docker/integration-tests/integration-tests-base.yaml
+++ b/docker/integration-tests/integration-tests-base.yaml
@@ -27,7 +27,7 @@ services:
- JENKINS_UID=1000
- JENKINS_GROUP=jenkins
- JENKINS_GID=1000
- - GCP_KEY_FILE=./test
+ - GCP_KEY_FILE=./docker/integration-tests/resource/dummyfile
volumes:
- ../../integration-tests/:/files
environment:
diff --git a/docker/integration-tests/resource/dummyfile
b/docker/integration-tests/resource/dummyfile
new file mode 100644
index 0000000000..ef84e253cc
--- /dev/null
+++ b/docker/integration-tests/resource/dummyfile
@@ -0,0 +1,17 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+#
diff --git a/integration-tests/scripts/run-tests-docker.sh
b/integration-tests/scripts/run-tests-docker.sh
index 72030661b6..9e482ad33f 100755
--- a/integration-tests/scripts/run-tests-docker.sh
+++ b/integration-tests/scripts/run-tests-docker.sh
@@ -64,7 +64,7 @@ if [ -z "${SUREFIRE_REPORT}" ]; then
fi
if [ -z "${GCP_KEY_FILE}" ]; then
- GCP_KEY_FILE=""
+ GCP_KEY_FILE="./docker/integration-tests/resource/dummyfile"
fi
if [ -z "${KEEP_IMAGES}" ]; then