From 54dd3f06996ec298b6bdfd156cfa23a2ed657fd0 Mon Sep 17 00:00:00 2001 From: Jeffrey Rennie Date: Fri, 22 Jun 2018 13:48:58 -0700 Subject: [PATCH 1/9] Generate configs ideas. --- jeff.ps1 | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 jeff.ps1 diff --git a/jeff.ps1 b/jeff.ps1 new file mode 100644 index 0000000000..f821105079 --- /dev/null +++ b/jeff.ps1 @@ -0,0 +1,28 @@ +$pj = gci -Recurse package.json +foreach ($json in $pj) { + $package = $pj | ConvertFrom-Json + if ($package.scripts.test ) { # -or test or system_test subdirectory is present. + # Generate path/../.cfg Replace /s with -s. + # Example foo/bar/package.json => foo-bar.cfg + # Add to .kokoro/. + } else { + # Look for subfolder test or tests... + # Repeat above. + } +} + + +# Replace cloudtasks with "foo/bar" +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "cloudtasks" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} From 43494aab13d26d0446858c8cbb62a7ac8eec8bac Mon Sep 17 00:00:00 2001 From: Jeffrey Rennie Date: Fri, 22 Jun 2018 14:44:07 -0700 Subject: [PATCH 2/9] Correctly generates configs. --- jeff.ps1 | 36 +++++++++++++++++++++++++----------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/jeff.ps1 b/jeff.ps1 index f821105079..4a791d64dd 100644 --- a/jeff.ps1 +++ b/jeff.ps1 @@ -1,18 +1,26 @@ -$pj = gci -Recurse package.json -foreach ($json in $pj) { - $package = $pj | ConvertFrom-Json - if ($package.scripts.test ) { # -or test or system_test subdirectory is present. - # Generate path/../.cfg Replace /s with -s. - # Example foo/bar/package.json => foo-bar.cfg - # Add to .kokoro/. - } else { - # Look for subfolder test or tests... - # Repeat above. - } +# A script for inspecting the source tree and generating test configs. +$packageJsons = Get-ChildItem -Recurse package.json +$testDirs = Get-ChildItem -Recurse *test | Where-Object { Test-Path -Path $_ -PathType Container} + +function Collect-Names { + # Use a dictionary to de-duplicate the directories. + $names = @{} + foreach ($item in $input) { + $relPath = [string] (Resolve-Path -Relative (Split-Path -Parent $item)) + # replace slashes with hyphenes. + $name = $relPath.Replace('/', '-') + $name = $relPath.Replace('\', '-') + # Remove the '.-' at the beginning of the string. + $name = $name.Substring(2) + $names[$name] = $true + } + return $names.Keys } +$names = ($packageJsons + $testDirs | Collect-Names) # Replace cloudtasks with "foo/bar" +$template = @' # Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run @@ -26,3 +34,9 @@ env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" } +'@ + +foreach ($name in $names) { + $template.Replace('cloudtasks', $name) ` + | Out-File -FilePath ".kokoro/$name.cfg" -Encoding utf8 +} From 4d1420733ec78d829dac1068eab112b8f70d53ba Mon Sep 17 00:00:00 2001 From: Jeffrey Rennie Date: Fri, 22 Jun 2018 14:49:34 -0700 Subject: [PATCH 3/9] Move generate configs script into .kokoro. --- jeff.ps1 => .kokoro/Generate-Configs.ps1 | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) rename jeff.ps1 => .kokoro/Generate-Configs.ps1 (71%) diff --git a/jeff.ps1 b/.kokoro/Generate-Configs.ps1 similarity index 71% rename from jeff.ps1 rename to .kokoro/Generate-Configs.ps1 index 4a791d64dd..a310388f80 100644 --- a/jeff.ps1 +++ b/.kokoro/Generate-Configs.ps1 @@ -1,6 +1,4 @@ # A script for inspecting the source tree and generating test configs. -$packageJsons = Get-ChildItem -Recurse package.json -$testDirs = Get-ChildItem -Recurse *test | Where-Object { Test-Path -Path $_ -PathType Container} function Collect-Names { # Use a dictionary to de-duplicate the directories. @@ -17,7 +15,15 @@ function Collect-Names { return $names.Keys } -$names = ($packageJsons + $testDirs | Collect-Names) +Push-Location +try { + Set-Location .. + $packageJsons = Get-ChildItem -Recurse package.json + $testDirs = Get-ChildItem -Recurse *test | Where-Object { Test-Path -Path $_ -PathType Container} + $names = ($packageJsons + $testDirs | Collect-Names) +} finally { + Pop-Location +} # Replace cloudtasks with "foo/bar" $template = @' @@ -38,5 +44,5 @@ env_vars: { foreach ($name in $names) { $template.Replace('cloudtasks', $name) ` - | Out-File -FilePath ".kokoro/$name.cfg" -Encoding utf8 + | Out-File -FilePath "$name.cfg" -Encoding utf8 } From 7e57b411208458381d990aeabcddb34c47e01f44 Mon Sep 17 00:00:00 2001 From: Jeffrey Rennie Date: Fri, 22 Jun 2018 14:49:53 -0700 Subject: [PATCH 4/9] More comments. --- .kokoro/Generate-Configs.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.kokoro/Generate-Configs.ps1 b/.kokoro/Generate-Configs.ps1 index a310388f80..e074867f0b 100644 --- a/.kokoro/Generate-Configs.ps1 +++ b/.kokoro/Generate-Configs.ps1 @@ -1,5 +1,7 @@ # A script for inspecting the source tree and generating test configs. +# Given a list of files, converts their paths into names of config files. +# Example: foo/bar/package.json => foo-bar.cfg. function Collect-Names { # Use a dictionary to de-duplicate the directories. $names = @{} From 1f67ba276e151d92613b4d28ed60113ea78597a3 Mon Sep 17 00:00:00 2001 From: Jeffrey Rennie Date: Fri, 22 Jun 2018 14:50:29 -0700 Subject: [PATCH 5/9] Add configs for every package.json and test directory. --- .kokoro/appengine-analytics.cfg | 13 ++++++++++ .kokoro/appengine-building-an-app-build.cfg | 13 ++++++++++ .kokoro/appengine-building-an-app-update.cfg | 13 ++++++++++ .kokoro/appengine-cloudsql.cfg | 13 ++++++++++ .kokoro/appengine-cloudsql_postgresql.cfg | 13 ++++++++++ .kokoro/appengine-cloudtasks.cfg | 13 ++++++++++ .kokoro/appengine-datastore.cfg | 13 ++++++++++ .kokoro/appengine-endpoints.cfg | 13 ++++++++++ .kokoro/appengine-errorreporting.cfg | 13 ++++++++++ .kokoro/appengine-grunt.cfg | 13 ++++++++++ .kokoro/appengine-headless-chrome.cfg | 13 ++++++++++ .kokoro/appengine-hello-world-flexible.cfg | 13 ++++++++++ .kokoro/appengine-hello-world-standard.cfg | 13 ++++++++++ .kokoro/appengine-loopback.cfg | 13 ++++++++++ .kokoro/appengine-mailjet.cfg | 13 ++++++++++ .kokoro/appengine-memcached.cfg | 13 ++++++++++ .kokoro/appengine-metadata-flexible.cfg | 13 ++++++++++ .kokoro/appengine-metadata-standard.cfg | 13 ++++++++++ .kokoro/appengine-mongodb.cfg | 13 ++++++++++ .kokoro/appengine-parse-server.cfg | 13 ++++++++++ .kokoro/appengine-pubsub.cfg | 13 ++++++++++ .kokoro/appengine-redis.cfg | 13 ++++++++++ .kokoro/appengine-sendgrid.cfg | 13 ++++++++++ .kokoro/appengine-static-files.cfg | 13 ++++++++++ .kokoro/appengine-storage-flexible.cfg | 13 ++++++++++ .kokoro/appengine-storage-standard.cfg | 13 ++++++++++ .kokoro/appengine-twilio.cfg | 13 ++++++++++ .kokoro/appengine.cfg | 13 ++++++++++ .kokoro/auth.cfg | 26 ++++++++++---------- .kokoro/cloudtasks.cfg | 26 ++++++++++---------- .kokoro/containerengine-hello-world.cfg | 26 ++++++++++---------- .kokoro/debugger.cfg | 26 ++++++++++---------- .kokoro/endpoints-getting-started-grpc.cfg | 13 ++++++++++ .kokoro/endpoints-getting-started.cfg | 26 ++++++++++---------- .kokoro/error-reporting.cfg | 26 ++++++++++---------- .kokoro/functions-background.cfg | 13 ++++++++++ .kokoro/functions-concepts.cfg | 13 ++++++++++ .kokoro/functions-datastore.cfg | 13 ++++++++++ .kokoro/functions-errorreporting.cfg | 13 ++++++++++ .kokoro/functions-gcs.cfg | 13 ++++++++++ .kokoro/functions-helloworld.cfg | 13 ++++++++++ .kokoro/functions-http.cfg | 13 ++++++++++ .kokoro/functions-imagemagick.cfg | 13 ++++++++++ .kokoro/functions-log.cfg | 13 ++++++++++ .kokoro/functions-ocr-app.cfg | 13 ++++++++++ .kokoro/functions-pubsub.cfg | 13 ++++++++++ .kokoro/functions-sendgrid.cfg | 13 ++++++++++ .kokoro/functions-slack.cfg | 13 ++++++++++ .kokoro/functions-spanner.cfg | 13 ++++++++++ .kokoro/functions-tips.cfg | 13 ++++++++++ .kokoro/functions-uuid.cfg | 13 ++++++++++ .kokoro/iot-http_example.cfg | 13 ++++++++++ .kokoro/iot-manager.cfg | 26 ++++++++++---------- .kokoro/iot-mqtt_example.cfg | 13 ++++++++++ .kokoro/iot-scripts.cfg | 13 ++++++++++ .kokoro/kms.cfg | 26 ++++++++++---------- .kokoro/language-slackbot.cfg | 26 ++++++++++---------- .kokoro/memorystore-redis.cfg | 13 ++++++++++ .kokoro/storage-transfer.cfg | 26 ++++++++++---------- .kokoro/trace.cfg | 26 ++++++++++---------- 60 files changed, 780 insertions(+), 143 deletions(-) create mode 100644 .kokoro/appengine-analytics.cfg create mode 100644 .kokoro/appengine-building-an-app-build.cfg create mode 100644 .kokoro/appengine-building-an-app-update.cfg create mode 100644 .kokoro/appengine-cloudsql.cfg create mode 100644 .kokoro/appengine-cloudsql_postgresql.cfg create mode 100644 .kokoro/appengine-cloudtasks.cfg create mode 100644 .kokoro/appengine-datastore.cfg create mode 100644 .kokoro/appengine-endpoints.cfg create mode 100644 .kokoro/appengine-errorreporting.cfg create mode 100644 .kokoro/appengine-grunt.cfg create mode 100644 .kokoro/appengine-headless-chrome.cfg create mode 100644 .kokoro/appengine-hello-world-flexible.cfg create mode 100644 .kokoro/appengine-hello-world-standard.cfg create mode 100644 .kokoro/appengine-loopback.cfg create mode 100644 .kokoro/appengine-mailjet.cfg create mode 100644 .kokoro/appengine-memcached.cfg create mode 100644 .kokoro/appengine-metadata-flexible.cfg create mode 100644 .kokoro/appengine-metadata-standard.cfg create mode 100644 .kokoro/appengine-mongodb.cfg create mode 100644 .kokoro/appengine-parse-server.cfg create mode 100644 .kokoro/appengine-pubsub.cfg create mode 100644 .kokoro/appengine-redis.cfg create mode 100644 .kokoro/appengine-sendgrid.cfg create mode 100644 .kokoro/appengine-static-files.cfg create mode 100644 .kokoro/appengine-storage-flexible.cfg create mode 100644 .kokoro/appengine-storage-standard.cfg create mode 100644 .kokoro/appengine-twilio.cfg create mode 100644 .kokoro/appengine.cfg create mode 100644 .kokoro/endpoints-getting-started-grpc.cfg create mode 100644 .kokoro/functions-background.cfg create mode 100644 .kokoro/functions-concepts.cfg create mode 100644 .kokoro/functions-datastore.cfg create mode 100644 .kokoro/functions-errorreporting.cfg create mode 100644 .kokoro/functions-gcs.cfg create mode 100644 .kokoro/functions-helloworld.cfg create mode 100644 .kokoro/functions-http.cfg create mode 100644 .kokoro/functions-imagemagick.cfg create mode 100644 .kokoro/functions-log.cfg create mode 100644 .kokoro/functions-ocr-app.cfg create mode 100644 .kokoro/functions-pubsub.cfg create mode 100644 .kokoro/functions-sendgrid.cfg create mode 100644 .kokoro/functions-slack.cfg create mode 100644 .kokoro/functions-spanner.cfg create mode 100644 .kokoro/functions-tips.cfg create mode 100644 .kokoro/functions-uuid.cfg create mode 100644 .kokoro/iot-http_example.cfg create mode 100644 .kokoro/iot-mqtt_example.cfg create mode 100644 .kokoro/iot-scripts.cfg create mode 100644 .kokoro/memorystore-redis.cfg diff --git a/.kokoro/appengine-analytics.cfg b/.kokoro/appengine-analytics.cfg new file mode 100644 index 0000000000..922a8c79d6 --- /dev/null +++ b/.kokoro/appengine-analytics.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-analytics" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-building-an-app-build.cfg b/.kokoro/appengine-building-an-app-build.cfg new file mode 100644 index 0000000000..d3de486a31 --- /dev/null +++ b/.kokoro/appengine-building-an-app-build.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-building-an-app-build" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-building-an-app-update.cfg b/.kokoro/appengine-building-an-app-update.cfg new file mode 100644 index 0000000000..b22e25f6b1 --- /dev/null +++ b/.kokoro/appengine-building-an-app-update.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-building-an-app-update" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-cloudsql.cfg b/.kokoro/appengine-cloudsql.cfg new file mode 100644 index 0000000000..bea76f4b28 --- /dev/null +++ b/.kokoro/appengine-cloudsql.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-cloudsql" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-cloudsql_postgresql.cfg b/.kokoro/appengine-cloudsql_postgresql.cfg new file mode 100644 index 0000000000..d9fdfb14e7 --- /dev/null +++ b/.kokoro/appengine-cloudsql_postgresql.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-cloudsql_postgresql" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-cloudtasks.cfg b/.kokoro/appengine-cloudtasks.cfg new file mode 100644 index 0000000000..71dfe36e78 --- /dev/null +++ b/.kokoro/appengine-cloudtasks.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-cloudtasks" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-datastore.cfg b/.kokoro/appengine-datastore.cfg new file mode 100644 index 0000000000..6d903fbfb2 --- /dev/null +++ b/.kokoro/appengine-datastore.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-datastore" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-endpoints.cfg b/.kokoro/appengine-endpoints.cfg new file mode 100644 index 0000000000..66f75f7c1a --- /dev/null +++ b/.kokoro/appengine-endpoints.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-endpoints" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-errorreporting.cfg b/.kokoro/appengine-errorreporting.cfg new file mode 100644 index 0000000000..45588091a9 --- /dev/null +++ b/.kokoro/appengine-errorreporting.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-errorreporting" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-grunt.cfg b/.kokoro/appengine-grunt.cfg new file mode 100644 index 0000000000..ccb7f81bb2 --- /dev/null +++ b/.kokoro/appengine-grunt.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-grunt" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-headless-chrome.cfg b/.kokoro/appengine-headless-chrome.cfg new file mode 100644 index 0000000000..3797ba2c34 --- /dev/null +++ b/.kokoro/appengine-headless-chrome.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-headless-chrome" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-hello-world-flexible.cfg b/.kokoro/appengine-hello-world-flexible.cfg new file mode 100644 index 0000000000..cce15186dc --- /dev/null +++ b/.kokoro/appengine-hello-world-flexible.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-hello-world-flexible" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-hello-world-standard.cfg b/.kokoro/appengine-hello-world-standard.cfg new file mode 100644 index 0000000000..6c8ea5c215 --- /dev/null +++ b/.kokoro/appengine-hello-world-standard.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-hello-world-standard" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-loopback.cfg b/.kokoro/appengine-loopback.cfg new file mode 100644 index 0000000000..01a2df1e9e --- /dev/null +++ b/.kokoro/appengine-loopback.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-loopback" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-mailjet.cfg b/.kokoro/appengine-mailjet.cfg new file mode 100644 index 0000000000..3c14043a94 --- /dev/null +++ b/.kokoro/appengine-mailjet.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-mailjet" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-memcached.cfg b/.kokoro/appengine-memcached.cfg new file mode 100644 index 0000000000..fca9d5a458 --- /dev/null +++ b/.kokoro/appengine-memcached.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-memcached" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-metadata-flexible.cfg b/.kokoro/appengine-metadata-flexible.cfg new file mode 100644 index 0000000000..cd1937c0c1 --- /dev/null +++ b/.kokoro/appengine-metadata-flexible.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-metadata-flexible" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-metadata-standard.cfg b/.kokoro/appengine-metadata-standard.cfg new file mode 100644 index 0000000000..4b6e9332fd --- /dev/null +++ b/.kokoro/appengine-metadata-standard.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-metadata-standard" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-mongodb.cfg b/.kokoro/appengine-mongodb.cfg new file mode 100644 index 0000000000..2c5eb68749 --- /dev/null +++ b/.kokoro/appengine-mongodb.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-mongodb" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-parse-server.cfg b/.kokoro/appengine-parse-server.cfg new file mode 100644 index 0000000000..24f7157bf2 --- /dev/null +++ b/.kokoro/appengine-parse-server.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-parse-server" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-pubsub.cfg b/.kokoro/appengine-pubsub.cfg new file mode 100644 index 0000000000..0a73690df7 --- /dev/null +++ b/.kokoro/appengine-pubsub.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-pubsub" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-redis.cfg b/.kokoro/appengine-redis.cfg new file mode 100644 index 0000000000..fb72104924 --- /dev/null +++ b/.kokoro/appengine-redis.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-redis" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-sendgrid.cfg b/.kokoro/appengine-sendgrid.cfg new file mode 100644 index 0000000000..7e56435847 --- /dev/null +++ b/.kokoro/appengine-sendgrid.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-sendgrid" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-static-files.cfg b/.kokoro/appengine-static-files.cfg new file mode 100644 index 0000000000..5eeffb99da --- /dev/null +++ b/.kokoro/appengine-static-files.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-static-files" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-storage-flexible.cfg b/.kokoro/appengine-storage-flexible.cfg new file mode 100644 index 0000000000..f97dc3e54e --- /dev/null +++ b/.kokoro/appengine-storage-flexible.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-storage-flexible" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-storage-standard.cfg b/.kokoro/appengine-storage-standard.cfg new file mode 100644 index 0000000000..eec23dc065 --- /dev/null +++ b/.kokoro/appengine-storage-standard.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-storage-standard" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-twilio.cfg b/.kokoro/appengine-twilio.cfg new file mode 100644 index 0000000000..fad476d9c6 --- /dev/null +++ b/.kokoro/appengine-twilio.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine-twilio" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine.cfg b/.kokoro/appengine.cfg new file mode 100644 index 0000000000..a45000b26e --- /dev/null +++ b/.kokoro/appengine.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/auth.cfg b/.kokoro/auth.cfg index 46c454bd8e..d6452c7d09 100644 --- a/.kokoro/auth.cfg +++ b/.kokoro/auth.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "auth" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "auth" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/cloudtasks.cfg b/.kokoro/cloudtasks.cfg index 4432e3e3d8..4b6ae2f3f1 100644 --- a/.kokoro/cloudtasks.cfg +++ b/.kokoro/cloudtasks.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "cloudtasks" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "cloudtasks" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/containerengine-hello-world.cfg b/.kokoro/containerengine-hello-world.cfg index 4432e3e3d8..781263f087 100644 --- a/.kokoro/containerengine-hello-world.cfg +++ b/.kokoro/containerengine-hello-world.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "cloudtasks" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "containerengine-hello-world" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/debugger.cfg b/.kokoro/debugger.cfg index 3b4f2547cd..b3ba742c4f 100644 --- a/.kokoro/debugger.cfg +++ b/.kokoro/debugger.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "debugger" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "debugger" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/endpoints-getting-started-grpc.cfg b/.kokoro/endpoints-getting-started-grpc.cfg new file mode 100644 index 0000000000..fb3031b9ad --- /dev/null +++ b/.kokoro/endpoints-getting-started-grpc.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "endpoints-getting-started-grpc" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/endpoints-getting-started.cfg b/.kokoro/endpoints-getting-started.cfg index 4432e3e3d8..bd5acedcd2 100644 --- a/.kokoro/endpoints-getting-started.cfg +++ b/.kokoro/endpoints-getting-started.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "cloudtasks" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "endpoints-getting-started" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/error-reporting.cfg b/.kokoro/error-reporting.cfg index ad6ba1f194..84447247a5 100644 --- a/.kokoro/error-reporting.cfg +++ b/.kokoro/error-reporting.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "error-reporting" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "error-reporting" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-background.cfg b/.kokoro/functions-background.cfg new file mode 100644 index 0000000000..bb47d04149 --- /dev/null +++ b/.kokoro/functions-background.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-background" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-concepts.cfg b/.kokoro/functions-concepts.cfg new file mode 100644 index 0000000000..ab79ad4ab1 --- /dev/null +++ b/.kokoro/functions-concepts.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-concepts" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-datastore.cfg b/.kokoro/functions-datastore.cfg new file mode 100644 index 0000000000..66644cf292 --- /dev/null +++ b/.kokoro/functions-datastore.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-datastore" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-errorreporting.cfg b/.kokoro/functions-errorreporting.cfg new file mode 100644 index 0000000000..248a1f6b0c --- /dev/null +++ b/.kokoro/functions-errorreporting.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-errorreporting" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-gcs.cfg b/.kokoro/functions-gcs.cfg new file mode 100644 index 0000000000..49a579457d --- /dev/null +++ b/.kokoro/functions-gcs.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-gcs" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-helloworld.cfg b/.kokoro/functions-helloworld.cfg new file mode 100644 index 0000000000..526a6df219 --- /dev/null +++ b/.kokoro/functions-helloworld.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-helloworld" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-http.cfg b/.kokoro/functions-http.cfg new file mode 100644 index 0000000000..ee8031cac7 --- /dev/null +++ b/.kokoro/functions-http.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-http" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-imagemagick.cfg b/.kokoro/functions-imagemagick.cfg new file mode 100644 index 0000000000..ac35e95ad8 --- /dev/null +++ b/.kokoro/functions-imagemagick.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-imagemagick" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-log.cfg b/.kokoro/functions-log.cfg new file mode 100644 index 0000000000..e0c2d6652b --- /dev/null +++ b/.kokoro/functions-log.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-log" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-ocr-app.cfg b/.kokoro/functions-ocr-app.cfg new file mode 100644 index 0000000000..f7c3f78fb0 --- /dev/null +++ b/.kokoro/functions-ocr-app.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-ocr-app" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-pubsub.cfg b/.kokoro/functions-pubsub.cfg new file mode 100644 index 0000000000..fe329fae7f --- /dev/null +++ b/.kokoro/functions-pubsub.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-pubsub" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-sendgrid.cfg b/.kokoro/functions-sendgrid.cfg new file mode 100644 index 0000000000..9d989330a5 --- /dev/null +++ b/.kokoro/functions-sendgrid.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-sendgrid" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-slack.cfg b/.kokoro/functions-slack.cfg new file mode 100644 index 0000000000..268f244b41 --- /dev/null +++ b/.kokoro/functions-slack.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-slack" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-spanner.cfg b/.kokoro/functions-spanner.cfg new file mode 100644 index 0000000000..3eac682f08 --- /dev/null +++ b/.kokoro/functions-spanner.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-spanner" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-tips.cfg b/.kokoro/functions-tips.cfg new file mode 100644 index 0000000000..87a970999c --- /dev/null +++ b/.kokoro/functions-tips.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-tips" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/functions-uuid.cfg b/.kokoro/functions-uuid.cfg new file mode 100644 index 0000000000..a53873b910 --- /dev/null +++ b/.kokoro/functions-uuid.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "functions-uuid" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/iot-http_example.cfg b/.kokoro/iot-http_example.cfg new file mode 100644 index 0000000000..c0210a7c91 --- /dev/null +++ b/.kokoro/iot-http_example.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "iot-http_example" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/iot-manager.cfg b/.kokoro/iot-manager.cfg index 805c80eb7d..6822658faf 100644 --- a/.kokoro/iot-manager.cfg +++ b/.kokoro/iot-manager.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "iot/manager" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "iot-manager" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/iot-mqtt_example.cfg b/.kokoro/iot-mqtt_example.cfg new file mode 100644 index 0000000000..51f8e269ce --- /dev/null +++ b/.kokoro/iot-mqtt_example.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "iot-mqtt_example" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/iot-scripts.cfg b/.kokoro/iot-scripts.cfg new file mode 100644 index 0000000000..357f31b8e6 --- /dev/null +++ b/.kokoro/iot-scripts.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "iot-scripts" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/kms.cfg b/.kokoro/kms.cfg index 0ad6657964..bd0e9098ed 100644 --- a/.kokoro/kms.cfg +++ b/.kokoro/kms.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "kms" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "kms" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/language-slackbot.cfg b/.kokoro/language-slackbot.cfg index 642dbacadc..36a7e65caf 100644 --- a/.kokoro/language-slackbot.cfg +++ b/.kokoro/language-slackbot.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "language/slackbot" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "language-slackbot" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/memorystore-redis.cfg b/.kokoro/memorystore-redis.cfg new file mode 100644 index 0000000000..910da0fb79 --- /dev/null +++ b/.kokoro/memorystore-redis.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "memorystore-redis" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/storage-transfer.cfg b/.kokoro/storage-transfer.cfg index 93f890be38..fb954f40a9 100644 --- a/.kokoro/storage-transfer.cfg +++ b/.kokoro/storage-transfer.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "storage/transfer" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "storage-transfer" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/trace.cfg b/.kokoro/trace.cfg index 08cd489462..88eb9acd80 100644 --- a/.kokoro/trace.cfg +++ b/.kokoro/trace.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "trace" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "trace" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} From 1ea55bca6439c3bd26ba539f0a29e42f11093043 Mon Sep 17 00:00:00 2001 From: Jeffrey Rennie Date: Fri, 22 Jun 2018 15:00:26 -0700 Subject: [PATCH 6/9] The values in the configs should still have slashes. --- .kokoro/Generate-Configs.ps1 | 2 +- .kokoro/appengine-analytics.cfg | 2 +- .kokoro/appengine-building-an-app-build.cfg | 2 +- .kokoro/appengine-building-an-app-update.cfg | 2 +- .kokoro/appengine-cloudsql.cfg | 2 +- .kokoro/appengine-cloudsql_postgresql.cfg | 2 +- .kokoro/appengine-cloudtasks.cfg | 2 +- .kokoro/appengine-datastore.cfg | 2 +- .kokoro/appengine-endpoints.cfg | 2 +- .kokoro/appengine-errorreporting.cfg | 2 +- .kokoro/appengine-grunt.cfg | 2 +- .kokoro/appengine-headless-chrome.cfg | 2 +- .kokoro/appengine-hello-world-flexible.cfg | 2 +- .kokoro/appengine-hello-world-standard.cfg | 2 +- .kokoro/appengine-loopback.cfg | 2 +- .kokoro/appengine-mailjet.cfg | 2 +- .kokoro/appengine-memcached.cfg | 2 +- .kokoro/appengine-metadata-flexible.cfg | 2 +- .kokoro/appengine-metadata-standard.cfg | 2 +- .kokoro/appengine-mongodb.cfg | 2 +- .kokoro/appengine-parse-server.cfg | 2 +- .kokoro/appengine-pubsub.cfg | 2 +- .kokoro/appengine-redis.cfg | 2 +- .kokoro/appengine-sendgrid.cfg | 2 +- .kokoro/appengine-static-files.cfg | 2 +- .kokoro/appengine-storage-flexible.cfg | 2 +- .kokoro/appengine-storage-standard.cfg | 2 +- .kokoro/appengine-twilio.cfg | 2 +- .kokoro/containerengine-hello-world.cfg | 2 +- .kokoro/endpoints-getting-started-grpc.cfg | 2 +- .kokoro/endpoints-getting-started.cfg | 2 +- .kokoro/error-reporting.cfg | 2 +- .kokoro/functions-background.cfg | 2 +- .kokoro/functions-concepts.cfg | 2 +- .kokoro/functions-datastore.cfg | 2 +- .kokoro/functions-errorreporting.cfg | 2 +- .kokoro/functions-gcs.cfg | 2 +- .kokoro/functions-helloworld.cfg | 2 +- .kokoro/functions-http.cfg | 2 +- .kokoro/functions-imagemagick.cfg | 2 +- .kokoro/functions-log.cfg | 2 +- .kokoro/functions-ocr-app.cfg | 2 +- .kokoro/functions-pubsub.cfg | 2 +- .kokoro/functions-sendgrid.cfg | 2 +- .kokoro/functions-slack.cfg | 2 +- .kokoro/functions-spanner.cfg | 2 +- .kokoro/functions-tips.cfg | 2 +- .kokoro/functions-uuid.cfg | 2 +- .kokoro/iot-http_example.cfg | 2 +- .kokoro/iot-manager.cfg | 2 +- .kokoro/iot-mqtt_example.cfg | 2 +- .kokoro/iot-scripts.cfg | 2 +- .kokoro/language-slackbot.cfg | 2 +- .kokoro/memorystore-redis.cfg | 2 +- .kokoro/storage-transfer.cfg | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/.kokoro/Generate-Configs.ps1 b/.kokoro/Generate-Configs.ps1 index e074867f0b..e2d83c9837 100644 --- a/.kokoro/Generate-Configs.ps1 +++ b/.kokoro/Generate-Configs.ps1 @@ -45,6 +45,6 @@ env_vars: { '@ foreach ($name in $names) { - $template.Replace('cloudtasks', $name) ` + $template.Replace('cloudtasks', $name.Replace('-', '/')) ` | Out-File -FilePath "$name.cfg" -Encoding utf8 } diff --git a/.kokoro/appengine-analytics.cfg b/.kokoro/appengine-analytics.cfg index 922a8c79d6..4928c5f191 100644 --- a/.kokoro/appengine-analytics.cfg +++ b/.kokoro/appengine-analytics.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-analytics" + value: "appengine/analytics" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-building-an-app-build.cfg b/.kokoro/appengine-building-an-app-build.cfg index d3de486a31..4743bc2bc6 100644 --- a/.kokoro/appengine-building-an-app-build.cfg +++ b/.kokoro/appengine-building-an-app-build.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-building-an-app-build" + value: "appengine/building/an/app/build" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-building-an-app-update.cfg b/.kokoro/appengine-building-an-app-update.cfg index b22e25f6b1..96249fdbd1 100644 --- a/.kokoro/appengine-building-an-app-update.cfg +++ b/.kokoro/appengine-building-an-app-update.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-building-an-app-update" + value: "appengine/building/an/app/update" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-cloudsql.cfg b/.kokoro/appengine-cloudsql.cfg index bea76f4b28..327c5d90f9 100644 --- a/.kokoro/appengine-cloudsql.cfg +++ b/.kokoro/appengine-cloudsql.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-cloudsql" + value: "appengine/cloudsql" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-cloudsql_postgresql.cfg b/.kokoro/appengine-cloudsql_postgresql.cfg index d9fdfb14e7..21961bcdad 100644 --- a/.kokoro/appengine-cloudsql_postgresql.cfg +++ b/.kokoro/appengine-cloudsql_postgresql.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-cloudsql_postgresql" + value: "appengine/cloudsql_postgresql" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-cloudtasks.cfg b/.kokoro/appengine-cloudtasks.cfg index 71dfe36e78..9e6652d3b9 100644 --- a/.kokoro/appengine-cloudtasks.cfg +++ b/.kokoro/appengine-cloudtasks.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-cloudtasks" + value: "appengine/cloudtasks" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-datastore.cfg b/.kokoro/appengine-datastore.cfg index 6d903fbfb2..a3c77132a3 100644 --- a/.kokoro/appengine-datastore.cfg +++ b/.kokoro/appengine-datastore.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-datastore" + value: "appengine/datastore" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-endpoints.cfg b/.kokoro/appengine-endpoints.cfg index 66f75f7c1a..bb498d4f5c 100644 --- a/.kokoro/appengine-endpoints.cfg +++ b/.kokoro/appengine-endpoints.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-endpoints" + value: "appengine/endpoints" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-errorreporting.cfg b/.kokoro/appengine-errorreporting.cfg index 45588091a9..4eadeed6e5 100644 --- a/.kokoro/appengine-errorreporting.cfg +++ b/.kokoro/appengine-errorreporting.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-errorreporting" + value: "appengine/errorreporting" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-grunt.cfg b/.kokoro/appengine-grunt.cfg index ccb7f81bb2..21443e4d7d 100644 --- a/.kokoro/appengine-grunt.cfg +++ b/.kokoro/appengine-grunt.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-grunt" + value: "appengine/grunt" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-headless-chrome.cfg b/.kokoro/appengine-headless-chrome.cfg index 3797ba2c34..b00bf11ae9 100644 --- a/.kokoro/appengine-headless-chrome.cfg +++ b/.kokoro/appengine-headless-chrome.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-headless-chrome" + value: "appengine/headless/chrome" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-hello-world-flexible.cfg b/.kokoro/appengine-hello-world-flexible.cfg index cce15186dc..a634995533 100644 --- a/.kokoro/appengine-hello-world-flexible.cfg +++ b/.kokoro/appengine-hello-world-flexible.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-hello-world-flexible" + value: "appengine/hello/world/flexible" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-hello-world-standard.cfg b/.kokoro/appengine-hello-world-standard.cfg index 6c8ea5c215..6eb47a3075 100644 --- a/.kokoro/appengine-hello-world-standard.cfg +++ b/.kokoro/appengine-hello-world-standard.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-hello-world-standard" + value: "appengine/hello/world/standard" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-loopback.cfg b/.kokoro/appengine-loopback.cfg index 01a2df1e9e..755ca3918e 100644 --- a/.kokoro/appengine-loopback.cfg +++ b/.kokoro/appengine-loopback.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-loopback" + value: "appengine/loopback" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-mailjet.cfg b/.kokoro/appengine-mailjet.cfg index 3c14043a94..0b2b0f3532 100644 --- a/.kokoro/appengine-mailjet.cfg +++ b/.kokoro/appengine-mailjet.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-mailjet" + value: "appengine/mailjet" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-memcached.cfg b/.kokoro/appengine-memcached.cfg index fca9d5a458..51d847fbf9 100644 --- a/.kokoro/appengine-memcached.cfg +++ b/.kokoro/appengine-memcached.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-memcached" + value: "appengine/memcached" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-metadata-flexible.cfg b/.kokoro/appengine-metadata-flexible.cfg index cd1937c0c1..1fec3b8987 100644 --- a/.kokoro/appengine-metadata-flexible.cfg +++ b/.kokoro/appengine-metadata-flexible.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-metadata-flexible" + value: "appengine/metadata/flexible" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-metadata-standard.cfg b/.kokoro/appengine-metadata-standard.cfg index 4b6e9332fd..ea73589d21 100644 --- a/.kokoro/appengine-metadata-standard.cfg +++ b/.kokoro/appengine-metadata-standard.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-metadata-standard" + value: "appengine/metadata/standard" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-mongodb.cfg b/.kokoro/appengine-mongodb.cfg index 2c5eb68749..caed91d5c1 100644 --- a/.kokoro/appengine-mongodb.cfg +++ b/.kokoro/appengine-mongodb.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-mongodb" + value: "appengine/mongodb" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-parse-server.cfg b/.kokoro/appengine-parse-server.cfg index 24f7157bf2..aca6310b3d 100644 --- a/.kokoro/appengine-parse-server.cfg +++ b/.kokoro/appengine-parse-server.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-parse-server" + value: "appengine/parse/server" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-pubsub.cfg b/.kokoro/appengine-pubsub.cfg index 0a73690df7..0e6718b274 100644 --- a/.kokoro/appengine-pubsub.cfg +++ b/.kokoro/appengine-pubsub.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-pubsub" + value: "appengine/pubsub" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-redis.cfg b/.kokoro/appengine-redis.cfg index fb72104924..2ca516d066 100644 --- a/.kokoro/appengine-redis.cfg +++ b/.kokoro/appengine-redis.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-redis" + value: "appengine/redis" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-sendgrid.cfg b/.kokoro/appengine-sendgrid.cfg index 7e56435847..b0ff592454 100644 --- a/.kokoro/appengine-sendgrid.cfg +++ b/.kokoro/appengine-sendgrid.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-sendgrid" + value: "appengine/sendgrid" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-static-files.cfg b/.kokoro/appengine-static-files.cfg index 5eeffb99da..55fad16172 100644 --- a/.kokoro/appengine-static-files.cfg +++ b/.kokoro/appengine-static-files.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-static-files" + value: "appengine/static/files" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-storage-flexible.cfg b/.kokoro/appengine-storage-flexible.cfg index f97dc3e54e..32273e104e 100644 --- a/.kokoro/appengine-storage-flexible.cfg +++ b/.kokoro/appengine-storage-flexible.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-storage-flexible" + value: "appengine/storage/flexible" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-storage-standard.cfg b/.kokoro/appengine-storage-standard.cfg index eec23dc065..8427c66d71 100644 --- a/.kokoro/appengine-storage-standard.cfg +++ b/.kokoro/appengine-storage-standard.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-storage-standard" + value: "appengine/storage/standard" } # Tell the trampoline which build file to use. diff --git a/.kokoro/appengine-twilio.cfg b/.kokoro/appengine-twilio.cfg index fad476d9c6..5bbf6b1a1e 100644 --- a/.kokoro/appengine-twilio.cfg +++ b/.kokoro/appengine-twilio.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine-twilio" + value: "appengine/twilio" } # Tell the trampoline which build file to use. diff --git a/.kokoro/containerengine-hello-world.cfg b/.kokoro/containerengine-hello-world.cfg index 781263f087..12f8b80933 100644 --- a/.kokoro/containerengine-hello-world.cfg +++ b/.kokoro/containerengine-hello-world.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "containerengine-hello-world" + value: "containerengine/hello/world" } # Tell the trampoline which build file to use. diff --git a/.kokoro/endpoints-getting-started-grpc.cfg b/.kokoro/endpoints-getting-started-grpc.cfg index fb3031b9ad..54bb34eb5e 100644 --- a/.kokoro/endpoints-getting-started-grpc.cfg +++ b/.kokoro/endpoints-getting-started-grpc.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "endpoints-getting-started-grpc" + value: "endpoints/getting/started/grpc" } # Tell the trampoline which build file to use. diff --git a/.kokoro/endpoints-getting-started.cfg b/.kokoro/endpoints-getting-started.cfg index bd5acedcd2..5990fa19ed 100644 --- a/.kokoro/endpoints-getting-started.cfg +++ b/.kokoro/endpoints-getting-started.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "endpoints-getting-started" + value: "endpoints/getting/started" } # Tell the trampoline which build file to use. diff --git a/.kokoro/error-reporting.cfg b/.kokoro/error-reporting.cfg index 84447247a5..d889ca5eb3 100644 --- a/.kokoro/error-reporting.cfg +++ b/.kokoro/error-reporting.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "error-reporting" + value: "error/reporting" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-background.cfg b/.kokoro/functions-background.cfg index bb47d04149..ce93f6334a 100644 --- a/.kokoro/functions-background.cfg +++ b/.kokoro/functions-background.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-background" + value: "functions/background" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-concepts.cfg b/.kokoro/functions-concepts.cfg index ab79ad4ab1..7a920160e4 100644 --- a/.kokoro/functions-concepts.cfg +++ b/.kokoro/functions-concepts.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-concepts" + value: "functions/concepts" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-datastore.cfg b/.kokoro/functions-datastore.cfg index 66644cf292..ebe2eb8753 100644 --- a/.kokoro/functions-datastore.cfg +++ b/.kokoro/functions-datastore.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-datastore" + value: "functions/datastore" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-errorreporting.cfg b/.kokoro/functions-errorreporting.cfg index 248a1f6b0c..45cad6b17d 100644 --- a/.kokoro/functions-errorreporting.cfg +++ b/.kokoro/functions-errorreporting.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-errorreporting" + value: "functions/errorreporting" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-gcs.cfg b/.kokoro/functions-gcs.cfg index 49a579457d..13607da584 100644 --- a/.kokoro/functions-gcs.cfg +++ b/.kokoro/functions-gcs.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-gcs" + value: "functions/gcs" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-helloworld.cfg b/.kokoro/functions-helloworld.cfg index 526a6df219..9ac43a171d 100644 --- a/.kokoro/functions-helloworld.cfg +++ b/.kokoro/functions-helloworld.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-helloworld" + value: "functions/helloworld" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-http.cfg b/.kokoro/functions-http.cfg index ee8031cac7..0de2198a73 100644 --- a/.kokoro/functions-http.cfg +++ b/.kokoro/functions-http.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-http" + value: "functions/http" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-imagemagick.cfg b/.kokoro/functions-imagemagick.cfg index ac35e95ad8..f1ca39705e 100644 --- a/.kokoro/functions-imagemagick.cfg +++ b/.kokoro/functions-imagemagick.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-imagemagick" + value: "functions/imagemagick" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-log.cfg b/.kokoro/functions-log.cfg index e0c2d6652b..a17d641d4d 100644 --- a/.kokoro/functions-log.cfg +++ b/.kokoro/functions-log.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-log" + value: "functions/log" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-ocr-app.cfg b/.kokoro/functions-ocr-app.cfg index f7c3f78fb0..5fb84649a6 100644 --- a/.kokoro/functions-ocr-app.cfg +++ b/.kokoro/functions-ocr-app.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-ocr-app" + value: "functions/ocr/app" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-pubsub.cfg b/.kokoro/functions-pubsub.cfg index fe329fae7f..10c3eaa733 100644 --- a/.kokoro/functions-pubsub.cfg +++ b/.kokoro/functions-pubsub.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-pubsub" + value: "functions/pubsub" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-sendgrid.cfg b/.kokoro/functions-sendgrid.cfg index 9d989330a5..be00122fc0 100644 --- a/.kokoro/functions-sendgrid.cfg +++ b/.kokoro/functions-sendgrid.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-sendgrid" + value: "functions/sendgrid" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-slack.cfg b/.kokoro/functions-slack.cfg index 268f244b41..ff71f45bfb 100644 --- a/.kokoro/functions-slack.cfg +++ b/.kokoro/functions-slack.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-slack" + value: "functions/slack" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-spanner.cfg b/.kokoro/functions-spanner.cfg index 3eac682f08..0e0e385d1e 100644 --- a/.kokoro/functions-spanner.cfg +++ b/.kokoro/functions-spanner.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-spanner" + value: "functions/spanner" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-tips.cfg b/.kokoro/functions-tips.cfg index 87a970999c..f5a8baca58 100644 --- a/.kokoro/functions-tips.cfg +++ b/.kokoro/functions-tips.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-tips" + value: "functions/tips" } # Tell the trampoline which build file to use. diff --git a/.kokoro/functions-uuid.cfg b/.kokoro/functions-uuid.cfg index a53873b910..866a62a88d 100644 --- a/.kokoro/functions-uuid.cfg +++ b/.kokoro/functions-uuid.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "functions-uuid" + value: "functions/uuid" } # Tell the trampoline which build file to use. diff --git a/.kokoro/iot-http_example.cfg b/.kokoro/iot-http_example.cfg index c0210a7c91..3845b9e16f 100644 --- a/.kokoro/iot-http_example.cfg +++ b/.kokoro/iot-http_example.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "iot-http_example" + value: "iot/http_example" } # Tell the trampoline which build file to use. diff --git a/.kokoro/iot-manager.cfg b/.kokoro/iot-manager.cfg index 6822658faf..d6da59083e 100644 --- a/.kokoro/iot-manager.cfg +++ b/.kokoro/iot-manager.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "iot-manager" + value: "iot/manager" } # Tell the trampoline which build file to use. diff --git a/.kokoro/iot-mqtt_example.cfg b/.kokoro/iot-mqtt_example.cfg index 51f8e269ce..b491beaa88 100644 --- a/.kokoro/iot-mqtt_example.cfg +++ b/.kokoro/iot-mqtt_example.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "iot-mqtt_example" + value: "iot/mqtt_example" } # Tell the trampoline which build file to use. diff --git a/.kokoro/iot-scripts.cfg b/.kokoro/iot-scripts.cfg index 357f31b8e6..d7bc20b226 100644 --- a/.kokoro/iot-scripts.cfg +++ b/.kokoro/iot-scripts.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "iot-scripts" + value: "iot/scripts" } # Tell the trampoline which build file to use. diff --git a/.kokoro/language-slackbot.cfg b/.kokoro/language-slackbot.cfg index 36a7e65caf..789bae446a 100644 --- a/.kokoro/language-slackbot.cfg +++ b/.kokoro/language-slackbot.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "language-slackbot" + value: "language/slackbot" } # Tell the trampoline which build file to use. diff --git a/.kokoro/memorystore-redis.cfg b/.kokoro/memorystore-redis.cfg index 910da0fb79..758459bf24 100644 --- a/.kokoro/memorystore-redis.cfg +++ b/.kokoro/memorystore-redis.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "memorystore-redis" + value: "memorystore/redis" } # Tell the trampoline which build file to use. diff --git a/.kokoro/storage-transfer.cfg b/.kokoro/storage-transfer.cfg index fb954f40a9..7576323bde 100644 --- a/.kokoro/storage-transfer.cfg +++ b/.kokoro/storage-transfer.cfg @@ -3,7 +3,7 @@ # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "storage-transfer" + value: "storage/transfer" } # Tell the trampoline which build file to use. From a01e18bdf5d6f9e4302987768b7deaac31613416 Mon Sep 17 00:00:00 2001 From: Jeffrey Rennie Date: Mon, 25 Jun 2018 17:24:16 -0700 Subject: [PATCH 7/9] Accomodate human whim in directory structure. --- .kokoro/Generate-Configs.ps1 | 38 ++++++++++++++++++++++++++---------- 1 file changed, 28 insertions(+), 10 deletions(-) diff --git a/.kokoro/Generate-Configs.ps1 b/.kokoro/Generate-Configs.ps1 index e2d83c9837..fb303632be 100644 --- a/.kokoro/Generate-Configs.ps1 +++ b/.kokoro/Generate-Configs.ps1 @@ -1,4 +1,9 @@ -# A script for inspecting the source tree and generating test configs. +# A powershell script for inspecting the source tree and generating test configs. + +# Given something like 'a\b\c', return ['a', 'b', 'c'] +function Explode-Path([string] $Path) { + return $Path.Replace('\', '/').Split('/') +} # Given a list of files, converts their paths into names of config files. # Example: foo/bar/package.json => foo-bar.cfg. @@ -7,14 +12,13 @@ function Collect-Names { $names = @{} foreach ($item in $input) { $relPath = [string] (Resolve-Path -Relative (Split-Path -Parent $item)) + # Remove the '.\' at the beginning of the string. + $dir = $relPath.Substring(2) # replace slashes with hyphenes. - $name = $relPath.Replace('/', '-') - $name = $relPath.Replace('\', '-') - # Remove the '.-' at the beginning of the string. - $name = $name.Substring(2) - $names[$name] = $true + $name = $dir.Replace('/', '-').Replace('\', '-') + $names[$name] = Explode-Path($dir) } - return $names.Keys + return $names } Push-Location @@ -44,7 +48,21 @@ env_vars: { } '@ -foreach ($name in $names) { - $template.Replace('cloudtasks', $name.Replace('-', '/')) ` - | Out-File -FilePath "$name.cfg" -Encoding utf8 +foreach ($name in $names.Keys) { + $pathFragments = $names[$name] + if (-not $pathFragments[0]) { continue } + # For some directories like appengine and functions, we put the configs + # in subdirectories. For others, we do not. + $pathFragments -join '/' + $configPath = if (Test-Path $pathFragments[0]) { + $dir = $pathFragments[0] + $n = $pathFragments.Count - 1 + $name = $pathFragments[1..$n] -join '-' + "$dir/$name.cfg" + } else { + "$name.cfg" + } + $srcDir = $pathFragments -join '/' + $template.Replace('cloudtasks', $srcDir) ` + | Out-File -FilePath $configPath -Encoding utf8 } From b8043e7b901bf02544203e7b935391efa12d14c0 Mon Sep 17 00:00:00 2001 From: Jeffrey Rennie Date: Mon, 25 Jun 2018 17:34:55 -0700 Subject: [PATCH 8/9] Update all configs. --- .kokoro/appengine-building-an-app-build.cfg | 13 ------------ .kokoro/appengine-building-an-app-update.cfg | 13 ------------ .kokoro/appengine-endpoints.cfg | 13 ------------ .kokoro/appengine-errorreporting.cfg | 13 ------------ .kokoro/appengine-headless-chrome.cfg | 13 ------------ .kokoro/appengine-hello-world-flexible.cfg | 13 ------------ .kokoro/appengine-hello-world-standard.cfg | 13 ------------ .kokoro/appengine-parse-server.cfg | 13 ------------ .kokoro/appengine-pubsub.cfg | 13 ------------ .kokoro/appengine-static-files.cfg | 13 ------------ .kokoro/appengine.cfg | 4 ++-- .kokoro/appengine/analytics.cfg | 20 ++++++++++++------- .kokoro/appengine/building-an-app-build.cfg | 13 ++++++++++++ .kokoro/appengine/building-an-app-update.cfg | 13 ++++++++++++ .kokoro/appengine/cloudsql.cfg | 18 +++++++++++------ .../cloudsql_postgresql.cfg} | 4 ++-- .../cloudtasks.cfg} | 4 ++-- .kokoro/appengine/datastore.cfg | 20 ++++++++++++------- .kokoro/appengine/endpoints.cfg | 18 +++++++++++------ .kokoro/appengine/errorreporting.cfg | 18 +++++++++++------ .../grunt.cfg} | 4 ++-- .../headless-chrome.cfg} | 6 +++--- .../hello-world-flexible.cfg} | 6 +++--- .../hello-world-standard.cfg} | 6 +++--- .../loopback.cfg} | 4 ++-- .kokoro/appengine/mailjet.cfg | 20 ++++++++++++------- .../memcached.cfg} | 4 ++-- .../metadata-flexible.cfg} | 4 ++-- .../metadata-standard.cfg} | 4 ++-- .../mongodb.cfg} | 4 ++-- .../parse-server.cfg} | 6 +++--- .kokoro/appengine/pubsub.cfg | 18 +++++++++++------ .../redis.cfg} | 4 ++-- .../sendgrid.cfg} | 4 ++-- .kokoro/appengine/static-files.cfg | 18 +++++++++++------ .../storage-flexible.cfg} | 4 ++-- .../storage-standard.cfg} | 4 ++-- .../twilio.cfg} | 4 ++-- .kokoro/auth.cfg | 4 ++-- .kokoro/cloudtasks.cfg | 4 ++-- .kokoro/containerengine-hello-world.cfg | 6 +++--- .kokoro/debugger.cfg | 4 ++-- .kokoro/endpoints-getting-started-grpc.cfg | 6 +++--- .kokoro/endpoints-getting-started.cfg | 6 +++--- .kokoro/error-reporting.cfg | 6 +++--- .../background.cfg} | 4 ++-- .../concepts.cfg} | 4 ++-- .../datastore.cfg} | 4 ++-- .../errorreporting.cfg} | 4 ++-- .../{functions-gcs.cfg => functions/gcs.cfg} | 4 ++-- .../helloworld.cfg} | 4 ++-- .../http.cfg} | 4 ++-- .../imagemagick.cfg} | 4 ++-- .../{functions-log.cfg => functions/log.cfg} | 4 ++-- .../ocr-app.cfg} | 4 ++-- .../pubsub.cfg} | 4 ++-- .../sendgrid.cfg} | 4 ++-- .../slack.cfg} | 4 ++-- .../spanner.cfg} | 4 ++-- .../tips.cfg} | 4 ++-- .../uuid.cfg} | 4 ++-- .kokoro/iot-http_example.cfg | 4 ++-- .kokoro/iot-manager.cfg | 4 ++-- .kokoro/iot-mqtt_example.cfg | 4 ++-- .kokoro/iot-scripts.cfg | 4 ++-- .kokoro/kms.cfg | 4 ++-- .kokoro/language-slackbot.cfg | 4 ++-- .kokoro/memorystore-redis.cfg | 4 ++-- .kokoro/storage-transfer.cfg | 6 +++--- .kokoro/trace.cfg | 4 ++-- 70 files changed, 234 insertions(+), 290 deletions(-) delete mode 100644 .kokoro/appengine-building-an-app-build.cfg delete mode 100644 .kokoro/appengine-building-an-app-update.cfg delete mode 100644 .kokoro/appengine-endpoints.cfg delete mode 100644 .kokoro/appengine-errorreporting.cfg delete mode 100644 .kokoro/appengine-headless-chrome.cfg delete mode 100644 .kokoro/appengine-hello-world-flexible.cfg delete mode 100644 .kokoro/appengine-hello-world-standard.cfg delete mode 100644 .kokoro/appengine-parse-server.cfg delete mode 100644 .kokoro/appengine-pubsub.cfg delete mode 100644 .kokoro/appengine-static-files.cfg create mode 100644 .kokoro/appengine/building-an-app-build.cfg create mode 100644 .kokoro/appengine/building-an-app-update.cfg rename .kokoro/{appengine-cloudsql_postgresql.cfg => appengine/cloudsql_postgresql.cfg} (79%) rename .kokoro/{appengine-cloudtasks.cfg => appengine/cloudtasks.cfg} (79%) rename .kokoro/{appengine-grunt.cfg => appengine/grunt.cfg} (78%) rename .kokoro/{appengine-analytics.cfg => appengine/headless-chrome.cfg} (68%) rename .kokoro/{appengine-datastore.cfg => appengine/hello-world-flexible.cfg} (67%) rename .kokoro/{appengine-cloudsql.cfg => appengine/hello-world-standard.cfg} (67%) rename .kokoro/{appengine-loopback.cfg => appengine/loopback.cfg} (79%) rename .kokoro/{appengine-memcached.cfg => appengine/memcached.cfg} (79%) rename .kokoro/{appengine-metadata-flexible.cfg => appengine/metadata-flexible.cfg} (79%) rename .kokoro/{appengine-metadata-standard.cfg => appengine/metadata-standard.cfg} (79%) rename .kokoro/{appengine-mongodb.cfg => appengine/mongodb.cfg} (79%) rename .kokoro/{appengine-mailjet.cfg => appengine/parse-server.cfg} (69%) rename .kokoro/{appengine-redis.cfg => appengine/redis.cfg} (78%) rename .kokoro/{appengine-sendgrid.cfg => appengine/sendgrid.cfg} (79%) rename .kokoro/{appengine-storage-flexible.cfg => appengine/storage-flexible.cfg} (79%) rename .kokoro/{appengine-storage-standard.cfg => appengine/storage-standard.cfg} (79%) rename .kokoro/{appengine-twilio.cfg => appengine/twilio.cfg} (79%) rename .kokoro/{functions-background.cfg => functions/background.cfg} (79%) rename .kokoro/{functions-concepts.cfg => functions/concepts.cfg} (79%) rename .kokoro/{functions-datastore.cfg => functions/datastore.cfg} (79%) rename .kokoro/{functions-errorreporting.cfg => functions/errorreporting.cfg} (79%) rename .kokoro/{functions-gcs.cfg => functions/gcs.cfg} (78%) rename .kokoro/{functions-helloworld.cfg => functions/helloworld.cfg} (79%) rename .kokoro/{functions-http.cfg => functions/http.cfg} (78%) rename .kokoro/{functions-imagemagick.cfg => functions/imagemagick.cfg} (79%) rename .kokoro/{functions-log.cfg => functions/log.cfg} (78%) rename .kokoro/{functions-ocr-app.cfg => functions/ocr-app.cfg} (79%) rename .kokoro/{functions-pubsub.cfg => functions/pubsub.cfg} (79%) rename .kokoro/{functions-sendgrid.cfg => functions/sendgrid.cfg} (79%) rename .kokoro/{functions-slack.cfg => functions/slack.cfg} (78%) rename .kokoro/{functions-spanner.cfg => functions/spanner.cfg} (79%) rename .kokoro/{functions-tips.cfg => functions/tips.cfg} (78%) rename .kokoro/{functions-uuid.cfg => functions/uuid.cfg} (78%) diff --git a/.kokoro/appengine-building-an-app-build.cfg b/.kokoro/appengine-building-an-app-build.cfg deleted file mode 100644 index 4743bc2bc6..0000000000 --- a/.kokoro/appengine-building-an-app-build.cfg +++ /dev/null @@ -1,13 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/building/an/app/build" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} diff --git a/.kokoro/appengine-building-an-app-update.cfg b/.kokoro/appengine-building-an-app-update.cfg deleted file mode 100644 index 96249fdbd1..0000000000 --- a/.kokoro/appengine-building-an-app-update.cfg +++ /dev/null @@ -1,13 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/building/an/app/update" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} diff --git a/.kokoro/appengine-endpoints.cfg b/.kokoro/appengine-endpoints.cfg deleted file mode 100644 index bb498d4f5c..0000000000 --- a/.kokoro/appengine-endpoints.cfg +++ /dev/null @@ -1,13 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/endpoints" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} diff --git a/.kokoro/appengine-errorreporting.cfg b/.kokoro/appengine-errorreporting.cfg deleted file mode 100644 index 4eadeed6e5..0000000000 --- a/.kokoro/appengine-errorreporting.cfg +++ /dev/null @@ -1,13 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/errorreporting" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} diff --git a/.kokoro/appengine-headless-chrome.cfg b/.kokoro/appengine-headless-chrome.cfg deleted file mode 100644 index b00bf11ae9..0000000000 --- a/.kokoro/appengine-headless-chrome.cfg +++ /dev/null @@ -1,13 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/headless/chrome" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} diff --git a/.kokoro/appengine-hello-world-flexible.cfg b/.kokoro/appengine-hello-world-flexible.cfg deleted file mode 100644 index a634995533..0000000000 --- a/.kokoro/appengine-hello-world-flexible.cfg +++ /dev/null @@ -1,13 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/hello/world/flexible" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} diff --git a/.kokoro/appengine-hello-world-standard.cfg b/.kokoro/appengine-hello-world-standard.cfg deleted file mode 100644 index 6eb47a3075..0000000000 --- a/.kokoro/appengine-hello-world-standard.cfg +++ /dev/null @@ -1,13 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/hello/world/standard" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} diff --git a/.kokoro/appengine-parse-server.cfg b/.kokoro/appengine-parse-server.cfg deleted file mode 100644 index aca6310b3d..0000000000 --- a/.kokoro/appengine-parse-server.cfg +++ /dev/null @@ -1,13 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/parse/server" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} diff --git a/.kokoro/appengine-pubsub.cfg b/.kokoro/appengine-pubsub.cfg deleted file mode 100644 index 0e6718b274..0000000000 --- a/.kokoro/appengine-pubsub.cfg +++ /dev/null @@ -1,13 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/pubsub" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} diff --git a/.kokoro/appengine-static-files.cfg b/.kokoro/appengine-static-files.cfg deleted file mode 100644 index 55fad16172..0000000000 --- a/.kokoro/appengine-static-files.cfg +++ /dev/null @@ -1,13 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/static/files" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -} diff --git a/.kokoro/appengine.cfg b/.kokoro/appengine.cfg index a45000b26e..37e9355b93 100644 --- a/.kokoro/appengine.cfg +++ b/.kokoro/appengine.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine/analytics.cfg b/.kokoro/appengine/analytics.cfg index 9863406c82..ff5c9e8757 100644 --- a/.kokoro/appengine/analytics.cfg +++ b/.kokoro/appengine/analytics.cfg @@ -1,7 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/analytics" -} \ No newline at end of file +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine/analytics" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine/building-an-app-build.cfg b/.kokoro/appengine/building-an-app-build.cfg new file mode 100644 index 0000000000..2b8d364a0d --- /dev/null +++ b/.kokoro/appengine/building-an-app-build.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine/building-an-app/build" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine/building-an-app-update.cfg b/.kokoro/appengine/building-an-app-update.cfg new file mode 100644 index 0000000000..c926645172 --- /dev/null +++ b/.kokoro/appengine/building-an-app-update.cfg @@ -0,0 +1,13 @@ +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine/building-an-app/update" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine/cloudsql.cfg b/.kokoro/appengine/cloudsql.cfg index 30325ee1eb..bb1e51ec17 100644 --- a/.kokoro/appengine/cloudsql.cfg +++ b/.kokoro/appengine/cloudsql.cfg @@ -1,7 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/cloudsql" +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine/cloudsql" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" } diff --git a/.kokoro/appengine-cloudsql_postgresql.cfg b/.kokoro/appengine/cloudsql_postgresql.cfg similarity index 79% rename from .kokoro/appengine-cloudsql_postgresql.cfg rename to .kokoro/appengine/cloudsql_postgresql.cfg index 21961bcdad..800be905ca 100644 --- a/.kokoro/appengine-cloudsql_postgresql.cfg +++ b/.kokoro/appengine/cloudsql_postgresql.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine-cloudtasks.cfg b/.kokoro/appengine/cloudtasks.cfg similarity index 79% rename from .kokoro/appengine-cloudtasks.cfg rename to .kokoro/appengine/cloudtasks.cfg index 9e6652d3b9..e9b9e66c3e 100644 --- a/.kokoro/appengine-cloudtasks.cfg +++ b/.kokoro/appengine/cloudtasks.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine/datastore.cfg b/.kokoro/appengine/datastore.cfg index 7cae8859f2..97a06c108d 100644 --- a/.kokoro/appengine/datastore.cfg +++ b/.kokoro/appengine/datastore.cfg @@ -1,7 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/datastore" -} \ No newline at end of file +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine/datastore" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine/endpoints.cfg b/.kokoro/appengine/endpoints.cfg index 39a286cd22..5023266099 100644 --- a/.kokoro/appengine/endpoints.cfg +++ b/.kokoro/appengine/endpoints.cfg @@ -1,7 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/endpoints" +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine/endpoints" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" } diff --git a/.kokoro/appengine/errorreporting.cfg b/.kokoro/appengine/errorreporting.cfg index a70e6daea3..03b546bf21 100644 --- a/.kokoro/appengine/errorreporting.cfg +++ b/.kokoro/appengine/errorreporting.cfg @@ -1,7 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/errorreporting" +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine/errorreporting" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" } diff --git a/.kokoro/appengine-grunt.cfg b/.kokoro/appengine/grunt.cfg similarity index 78% rename from .kokoro/appengine-grunt.cfg rename to .kokoro/appengine/grunt.cfg index 21443e4d7d..129fb5826b 100644 --- a/.kokoro/appengine-grunt.cfg +++ b/.kokoro/appengine/grunt.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine-analytics.cfg b/.kokoro/appengine/headless-chrome.cfg similarity index 68% rename from .kokoro/appengine-analytics.cfg rename to .kokoro/appengine/headless-chrome.cfg index 4928c5f191..2e0f2093bc 100644 --- a/.kokoro/appengine-analytics.cfg +++ b/.kokoro/appengine/headless-chrome.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine/analytics" + value: "appengine/headless-chrome" } # Tell the trampoline which build file to use. env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine-datastore.cfg b/.kokoro/appengine/hello-world-flexible.cfg similarity index 67% rename from .kokoro/appengine-datastore.cfg rename to .kokoro/appengine/hello-world-flexible.cfg index a3c77132a3..3e5785340c 100644 --- a/.kokoro/appengine-datastore.cfg +++ b/.kokoro/appengine/hello-world-flexible.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine/datastore" + value: "appengine/hello-world/flexible" } # Tell the trampoline which build file to use. env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine-cloudsql.cfg b/.kokoro/appengine/hello-world-standard.cfg similarity index 67% rename from .kokoro/appengine-cloudsql.cfg rename to .kokoro/appengine/hello-world-standard.cfg index 327c5d90f9..72550d46c6 100644 --- a/.kokoro/appengine-cloudsql.cfg +++ b/.kokoro/appengine/hello-world-standard.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine/cloudsql" + value: "appengine/hello-world/standard" } # Tell the trampoline which build file to use. env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine-loopback.cfg b/.kokoro/appengine/loopback.cfg similarity index 79% rename from .kokoro/appengine-loopback.cfg rename to .kokoro/appengine/loopback.cfg index 755ca3918e..0c766a557a 100644 --- a/.kokoro/appengine-loopback.cfg +++ b/.kokoro/appengine/loopback.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine/mailjet.cfg b/.kokoro/appengine/mailjet.cfg index 71884ce0c4..737be5ceec 100644 --- a/.kokoro/appengine/mailjet.cfg +++ b/.kokoro/appengine/mailjet.cfg @@ -1,7 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/mailjet" -} \ No newline at end of file +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine/mailjet" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" +} diff --git a/.kokoro/appengine-memcached.cfg b/.kokoro/appengine/memcached.cfg similarity index 79% rename from .kokoro/appengine-memcached.cfg rename to .kokoro/appengine/memcached.cfg index 51d847fbf9..35d4d25090 100644 --- a/.kokoro/appengine-memcached.cfg +++ b/.kokoro/appengine/memcached.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine-metadata-flexible.cfg b/.kokoro/appengine/metadata-flexible.cfg similarity index 79% rename from .kokoro/appengine-metadata-flexible.cfg rename to .kokoro/appengine/metadata-flexible.cfg index 1fec3b8987..d7abd8af9c 100644 --- a/.kokoro/appengine-metadata-flexible.cfg +++ b/.kokoro/appengine/metadata-flexible.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine-metadata-standard.cfg b/.kokoro/appengine/metadata-standard.cfg similarity index 79% rename from .kokoro/appengine-metadata-standard.cfg rename to .kokoro/appengine/metadata-standard.cfg index ea73589d21..ee76613aff 100644 --- a/.kokoro/appengine-metadata-standard.cfg +++ b/.kokoro/appengine/metadata-standard.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine-mongodb.cfg b/.kokoro/appengine/mongodb.cfg similarity index 79% rename from .kokoro/appengine-mongodb.cfg rename to .kokoro/appengine/mongodb.cfg index caed91d5c1..10399fe5f3 100644 --- a/.kokoro/appengine-mongodb.cfg +++ b/.kokoro/appengine/mongodb.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine-mailjet.cfg b/.kokoro/appengine/parse-server.cfg similarity index 69% rename from .kokoro/appengine-mailjet.cfg rename to .kokoro/appengine/parse-server.cfg index 0b2b0f3532..01e67fa150 100644 --- a/.kokoro/appengine-mailjet.cfg +++ b/.kokoro/appengine/parse-server.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "appengine/mailjet" + value: "appengine/parse-server" } # Tell the trampoline which build file to use. env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine/pubsub.cfg b/.kokoro/appengine/pubsub.cfg index 9936e7a2a3..aab232d9e3 100644 --- a/.kokoro/appengine/pubsub.cfg +++ b/.kokoro/appengine/pubsub.cfg @@ -1,7 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/pubsub" +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine/pubsub" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" } diff --git a/.kokoro/appengine-redis.cfg b/.kokoro/appengine/redis.cfg similarity index 78% rename from .kokoro/appengine-redis.cfg rename to .kokoro/appengine/redis.cfg index 2ca516d066..e40d602a70 100644 --- a/.kokoro/appengine-redis.cfg +++ b/.kokoro/appengine/redis.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine-sendgrid.cfg b/.kokoro/appengine/sendgrid.cfg similarity index 79% rename from .kokoro/appengine-sendgrid.cfg rename to .kokoro/appengine/sendgrid.cfg index b0ff592454..3c063d3b0c 100644 --- a/.kokoro/appengine-sendgrid.cfg +++ b/.kokoro/appengine/sendgrid.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine/static-files.cfg b/.kokoro/appengine/static-files.cfg index f8b755b748..ab8ab9602d 100644 --- a/.kokoro/appengine/static-files.cfg +++ b/.kokoro/appengine/static-files.cfg @@ -1,7 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine/static-files" +# Format: //devtools/kokoro/config/proto/build.proto + +# Set the folder in which the tests are run +env_vars: { + key: "PROJECT" + value: "appengine/static-files" +} + +# Tell the trampoline which build file to use. +env_vars: { + key: "TRAMPOLINE_BUILD_FILE" + value: "github/nodejs-docs-samples/.kokoro/build.sh" } diff --git a/.kokoro/appengine-storage-flexible.cfg b/.kokoro/appengine/storage-flexible.cfg similarity index 79% rename from .kokoro/appengine-storage-flexible.cfg rename to .kokoro/appengine/storage-flexible.cfg index 32273e104e..b6a335aeed 100644 --- a/.kokoro/appengine-storage-flexible.cfg +++ b/.kokoro/appengine/storage-flexible.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine-storage-standard.cfg b/.kokoro/appengine/storage-standard.cfg similarity index 79% rename from .kokoro/appengine-storage-standard.cfg rename to .kokoro/appengine/storage-standard.cfg index 8427c66d71..1ba55e21b7 100644 --- a/.kokoro/appengine-storage-standard.cfg +++ b/.kokoro/appengine/storage-standard.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/appengine-twilio.cfg b/.kokoro/appengine/twilio.cfg similarity index 79% rename from .kokoro/appengine-twilio.cfg rename to .kokoro/appengine/twilio.cfg index 5bbf6b1a1e..1458c80846 100644 --- a/.kokoro/appengine-twilio.cfg +++ b/.kokoro/appengine/twilio.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/auth.cfg b/.kokoro/auth.cfg index d6452c7d09..f69a9d5faf 100644 --- a/.kokoro/auth.cfg +++ b/.kokoro/auth.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/cloudtasks.cfg b/.kokoro/cloudtasks.cfg index 4b6ae2f3f1..13fe1d94e4 100644 --- a/.kokoro/cloudtasks.cfg +++ b/.kokoro/cloudtasks.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/containerengine-hello-world.cfg b/.kokoro/containerengine-hello-world.cfg index 12f8b80933..c4da2bd299 100644 --- a/.kokoro/containerengine-hello-world.cfg +++ b/.kokoro/containerengine-hello-world.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "containerengine/hello/world" + value: "containerengine/hello-world" } # Tell the trampoline which build file to use. env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/debugger.cfg b/.kokoro/debugger.cfg index b3ba742c4f..5cbed05585 100644 --- a/.kokoro/debugger.cfg +++ b/.kokoro/debugger.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/endpoints-getting-started-grpc.cfg b/.kokoro/endpoints-getting-started-grpc.cfg index 54bb34eb5e..03616ce5ce 100644 --- a/.kokoro/endpoints-getting-started-grpc.cfg +++ b/.kokoro/endpoints-getting-started-grpc.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "endpoints/getting/started/grpc" + value: "endpoints/getting-started-grpc" } # Tell the trampoline which build file to use. env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/endpoints-getting-started.cfg b/.kokoro/endpoints-getting-started.cfg index 5990fa19ed..5d7b0b480d 100644 --- a/.kokoro/endpoints-getting-started.cfg +++ b/.kokoro/endpoints-getting-started.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "endpoints/getting/started" + value: "endpoints/getting-started" } # Tell the trampoline which build file to use. env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/error-reporting.cfg b/.kokoro/error-reporting.cfg index d889ca5eb3..70645bf09f 100644 --- a/.kokoro/error-reporting.cfg +++ b/.kokoro/error-reporting.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "error/reporting" + value: "error-reporting" } # Tell the trampoline which build file to use. env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-background.cfg b/.kokoro/functions/background.cfg similarity index 79% rename from .kokoro/functions-background.cfg rename to .kokoro/functions/background.cfg index ce93f6334a..fa0b71aa1f 100644 --- a/.kokoro/functions-background.cfg +++ b/.kokoro/functions/background.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-concepts.cfg b/.kokoro/functions/concepts.cfg similarity index 79% rename from .kokoro/functions-concepts.cfg rename to .kokoro/functions/concepts.cfg index 7a920160e4..bc7481bf55 100644 --- a/.kokoro/functions-concepts.cfg +++ b/.kokoro/functions/concepts.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-datastore.cfg b/.kokoro/functions/datastore.cfg similarity index 79% rename from .kokoro/functions-datastore.cfg rename to .kokoro/functions/datastore.cfg index ebe2eb8753..f4b94ae1b4 100644 --- a/.kokoro/functions-datastore.cfg +++ b/.kokoro/functions/datastore.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-errorreporting.cfg b/.kokoro/functions/errorreporting.cfg similarity index 79% rename from .kokoro/functions-errorreporting.cfg rename to .kokoro/functions/errorreporting.cfg index 45cad6b17d..9ca7cfd013 100644 --- a/.kokoro/functions-errorreporting.cfg +++ b/.kokoro/functions/errorreporting.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-gcs.cfg b/.kokoro/functions/gcs.cfg similarity index 78% rename from .kokoro/functions-gcs.cfg rename to .kokoro/functions/gcs.cfg index 13607da584..ed7fdcc9da 100644 --- a/.kokoro/functions-gcs.cfg +++ b/.kokoro/functions/gcs.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-helloworld.cfg b/.kokoro/functions/helloworld.cfg similarity index 79% rename from .kokoro/functions-helloworld.cfg rename to .kokoro/functions/helloworld.cfg index 9ac43a171d..bb7659b39d 100644 --- a/.kokoro/functions-helloworld.cfg +++ b/.kokoro/functions/helloworld.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-http.cfg b/.kokoro/functions/http.cfg similarity index 78% rename from .kokoro/functions-http.cfg rename to .kokoro/functions/http.cfg index 0de2198a73..82c466e62e 100644 --- a/.kokoro/functions-http.cfg +++ b/.kokoro/functions/http.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-imagemagick.cfg b/.kokoro/functions/imagemagick.cfg similarity index 79% rename from .kokoro/functions-imagemagick.cfg rename to .kokoro/functions/imagemagick.cfg index f1ca39705e..9ce7dd7f94 100644 --- a/.kokoro/functions-imagemagick.cfg +++ b/.kokoro/functions/imagemagick.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-log.cfg b/.kokoro/functions/log.cfg similarity index 78% rename from .kokoro/functions-log.cfg rename to .kokoro/functions/log.cfg index a17d641d4d..c0273eba61 100644 --- a/.kokoro/functions-log.cfg +++ b/.kokoro/functions/log.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-ocr-app.cfg b/.kokoro/functions/ocr-app.cfg similarity index 79% rename from .kokoro/functions-ocr-app.cfg rename to .kokoro/functions/ocr-app.cfg index 5fb84649a6..2000daeb57 100644 --- a/.kokoro/functions-ocr-app.cfg +++ b/.kokoro/functions/ocr-app.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-pubsub.cfg b/.kokoro/functions/pubsub.cfg similarity index 79% rename from .kokoro/functions-pubsub.cfg rename to .kokoro/functions/pubsub.cfg index 10c3eaa733..8bf07dbf40 100644 --- a/.kokoro/functions-pubsub.cfg +++ b/.kokoro/functions/pubsub.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-sendgrid.cfg b/.kokoro/functions/sendgrid.cfg similarity index 79% rename from .kokoro/functions-sendgrid.cfg rename to .kokoro/functions/sendgrid.cfg index be00122fc0..83c4ae4d3c 100644 --- a/.kokoro/functions-sendgrid.cfg +++ b/.kokoro/functions/sendgrid.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-slack.cfg b/.kokoro/functions/slack.cfg similarity index 78% rename from .kokoro/functions-slack.cfg rename to .kokoro/functions/slack.cfg index ff71f45bfb..7425aac9ba 100644 --- a/.kokoro/functions-slack.cfg +++ b/.kokoro/functions/slack.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-spanner.cfg b/.kokoro/functions/spanner.cfg similarity index 79% rename from .kokoro/functions-spanner.cfg rename to .kokoro/functions/spanner.cfg index 0e0e385d1e..7e10b33a0e 100644 --- a/.kokoro/functions-spanner.cfg +++ b/.kokoro/functions/spanner.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-tips.cfg b/.kokoro/functions/tips.cfg similarity index 78% rename from .kokoro/functions-tips.cfg rename to .kokoro/functions/tips.cfg index f5a8baca58..5fa31b27d1 100644 --- a/.kokoro/functions-tips.cfg +++ b/.kokoro/functions/tips.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/functions-uuid.cfg b/.kokoro/functions/uuid.cfg similarity index 78% rename from .kokoro/functions-uuid.cfg rename to .kokoro/functions/uuid.cfg index 866a62a88d..0cb1c62c61 100644 --- a/.kokoro/functions-uuid.cfg +++ b/.kokoro/functions/uuid.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/iot-http_example.cfg b/.kokoro/iot-http_example.cfg index 3845b9e16f..b3e190b29f 100644 --- a/.kokoro/iot-http_example.cfg +++ b/.kokoro/iot-http_example.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/iot-manager.cfg b/.kokoro/iot-manager.cfg index d6da59083e..6f3f7cbdd5 100644 --- a/.kokoro/iot-manager.cfg +++ b/.kokoro/iot-manager.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/iot-mqtt_example.cfg b/.kokoro/iot-mqtt_example.cfg index b491beaa88..164cca4509 100644 --- a/.kokoro/iot-mqtt_example.cfg +++ b/.kokoro/iot-mqtt_example.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/iot-scripts.cfg b/.kokoro/iot-scripts.cfg index d7bc20b226..21347f8103 100644 --- a/.kokoro/iot-scripts.cfg +++ b/.kokoro/iot-scripts.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/kms.cfg b/.kokoro/kms.cfg index bd0e9098ed..e0c7a6dae1 100644 --- a/.kokoro/kms.cfg +++ b/.kokoro/kms.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/language-slackbot.cfg b/.kokoro/language-slackbot.cfg index 789bae446a..257e80a1b8 100644 --- a/.kokoro/language-slackbot.cfg +++ b/.kokoro/language-slackbot.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/memorystore-redis.cfg b/.kokoro/memorystore-redis.cfg index 758459bf24..17a23a7a9c 100644 --- a/.kokoro/memorystore-redis.cfg +++ b/.kokoro/memorystore-redis.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/storage-transfer.cfg b/.kokoro/storage-transfer.cfg index 7576323bde..dd7ee9b6e7 100644 --- a/.kokoro/storage-transfer.cfg +++ b/.kokoro/storage-transfer.cfg @@ -1,13 +1,13 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { key: "PROJECT" - value: "storage/transfer" + value: "storage-transfer" } # Tell the trampoline which build file to use. env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} diff --git a/.kokoro/trace.cfg b/.kokoro/trace.cfg index 88eb9acd80..3ffa03ab1b 100644 --- a/.kokoro/trace.cfg +++ b/.kokoro/trace.cfg @@ -1,4 +1,4 @@ -# Format: //devtools/kokoro/config/proto/build.proto +# Format: //devtools/kokoro/config/proto/build.proto # Set the folder in which the tests are run env_vars: { @@ -10,4 +10,4 @@ env_vars: { env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/nodejs-docs-samples/.kokoro/build.sh" -} +} From d69509c2f953e7e436554911b355fcd6d19ed501 Mon Sep 17 00:00:00 2001 From: Jeffrey Rennie Date: Tue, 26 Jun 2018 12:19:03 -0700 Subject: [PATCH 9/9] Remove appengine.cfg. --- .kokoro/appengine.cfg | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 .kokoro/appengine.cfg diff --git a/.kokoro/appengine.cfg b/.kokoro/appengine.cfg deleted file mode 100644 index 37e9355b93..0000000000 --- a/.kokoro/appengine.cfg +++ /dev/null @@ -1,13 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Set the folder in which the tests are run -env_vars: { - key: "PROJECT" - value: "appengine" -} - -# Tell the trampoline which build file to use. -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-docs-samples/.kokoro/build.sh" -}