From eaa04fe49708a2d1c834ba4e49876d8ab5c3e558 Mon Sep 17 00:00:00 2001
From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com>
Date: Tue, 22 Jun 2021 19:18:14 +0000
Subject: [PATCH] chore: add kokoro 3.9 config templates (#1128) (#60)

Source-Link: https://github.com/googleapis/synthtool/commit/b0eb8a8b30b46a3c98d23c23107acb748c6601a1
Post-Processor: gcr.io/repo-automation-bots/owlbot-python:latest@sha256:df50e8d462f86d6bcb42f27ecad55bb12c404f1c65de9c6fe4c4d25120080bd6
---
 .../.github/.OwlBot.lock.yaml                 |  2 +-
 .../.kokoro/samples/python3.9/common.cfg      | 40 +++++++++++++++++++
 .../.kokoro/samples/python3.9/continuous.cfg  |  6 +++
 .../samples/python3.9/periodic-head.cfg       | 11 +++++
 .../.kokoro/samples/python3.9/periodic.cfg    |  6 +++
 .../.kokoro/samples/python3.9/presubmit.cfg   |  6 +++
 6 files changed, 70 insertions(+), 1 deletion(-)
 create mode 100644 packages/google-area120-tables/.kokoro/samples/python3.9/common.cfg
 create mode 100644 packages/google-area120-tables/.kokoro/samples/python3.9/continuous.cfg
 create mode 100644 packages/google-area120-tables/.kokoro/samples/python3.9/periodic-head.cfg
 create mode 100644 packages/google-area120-tables/.kokoro/samples/python3.9/periodic.cfg
 create mode 100644 packages/google-area120-tables/.kokoro/samples/python3.9/presubmit.cfg

diff --git a/packages/google-area120-tables/.github/.OwlBot.lock.yaml b/packages/google-area120-tables/.github/.OwlBot.lock.yaml
index 9602d540595e..0954585f2833 100644
--- a/packages/google-area120-tables/.github/.OwlBot.lock.yaml
+++ b/packages/google-area120-tables/.github/.OwlBot.lock.yaml
@@ -1,3 +1,3 @@
 docker:
   image: gcr.io/repo-automation-bots/owlbot-python:latest
-  digest: sha256:b8c131c558606d3cea6e18f8e87befbd448c1482319b0db3c5d5388fa6ea72e3
+  digest: sha256:df50e8d462f86d6bcb42f27ecad55bb12c404f1c65de9c6fe4c4d25120080bd6
diff --git a/packages/google-area120-tables/.kokoro/samples/python3.9/common.cfg b/packages/google-area120-tables/.kokoro/samples/python3.9/common.cfg
new file mode 100644
index 000000000000..c5236c48a74f
--- /dev/null
+++ b/packages/google-area120-tables/.kokoro/samples/python3.9/common.cfg
@@ -0,0 +1,40 @@
+# Format: //devtools/kokoro/config/proto/build.proto
+
+# Build logs will be here
+action {
+  define_artifacts {
+    regex: "**/*sponge_log.xml"
+  }
+}
+
+# Specify which tests to run
+env_vars: {
+    key: "RUN_TESTS_SESSION"
+    value: "py-3.9"
+}
+
+# Declare build specific Cloud project.
+env_vars: {
+    key: "BUILD_SPECIFIC_GCLOUD_PROJECT"
+    value: "python-docs-samples-tests-py39"
+}
+
+env_vars: {
+    key: "TRAMPOLINE_BUILD_FILE"
+    value: "github/python-area120-tables/.kokoro/test-samples.sh"
+}
+
+# Configure the docker image for kokoro-trampoline.
+env_vars: {
+    key: "TRAMPOLINE_IMAGE"
+    value: "gcr.io/cloud-devrel-kokoro-resources/python-samples-testing-docker"
+}
+
+# Download secrets for samples
+gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/python-docs-samples"
+
+# Download trampoline resources.
+gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"
+
+# Use the trampoline script to run in docker.
+build_file: "python-area120-tables/.kokoro/trampoline.sh"
\ No newline at end of file
diff --git a/packages/google-area120-tables/.kokoro/samples/python3.9/continuous.cfg b/packages/google-area120-tables/.kokoro/samples/python3.9/continuous.cfg
new file mode 100644
index 000000000000..a1c8d9759c88
--- /dev/null
+++ b/packages/google-area120-tables/.kokoro/samples/python3.9/continuous.cfg
@@ -0,0 +1,6 @@
+# Format: //devtools/kokoro/config/proto/build.proto
+
+env_vars: {
+    key: "INSTALL_LIBRARY_FROM_SOURCE"
+    value: "True"
+}
\ No newline at end of file
diff --git a/packages/google-area120-tables/.kokoro/samples/python3.9/periodic-head.cfg b/packages/google-area120-tables/.kokoro/samples/python3.9/periodic-head.cfg
new file mode 100644
index 000000000000..f9cfcd33e058
--- /dev/null
+++ b/packages/google-area120-tables/.kokoro/samples/python3.9/periodic-head.cfg
@@ -0,0 +1,11 @@
+# Format: //devtools/kokoro/config/proto/build.proto
+
+env_vars: {
+    key: "INSTALL_LIBRARY_FROM_SOURCE"
+    value: "True"
+}
+
+env_vars: {
+    key: "TRAMPOLINE_BUILD_FILE"
+    value: "github/python-pubsub/.kokoro/test-samples-against-head.sh"
+}
diff --git a/packages/google-area120-tables/.kokoro/samples/python3.9/periodic.cfg b/packages/google-area120-tables/.kokoro/samples/python3.9/periodic.cfg
new file mode 100644
index 000000000000..50fec9649732
--- /dev/null
+++ b/packages/google-area120-tables/.kokoro/samples/python3.9/periodic.cfg
@@ -0,0 +1,6 @@
+# Format: //devtools/kokoro/config/proto/build.proto
+
+env_vars: {
+    key: "INSTALL_LIBRARY_FROM_SOURCE"
+    value: "False"
+}
\ No newline at end of file
diff --git a/packages/google-area120-tables/.kokoro/samples/python3.9/presubmit.cfg b/packages/google-area120-tables/.kokoro/samples/python3.9/presubmit.cfg
new file mode 100644
index 000000000000..a1c8d9759c88
--- /dev/null
+++ b/packages/google-area120-tables/.kokoro/samples/python3.9/presubmit.cfg
@@ -0,0 +1,6 @@
+# Format: //devtools/kokoro/config/proto/build.proto
+
+env_vars: {
+    key: "INSTALL_LIBRARY_FROM_SOURCE"
+    value: "True"
+}
\ No newline at end of file