diff --git a/.gitignore b/.gitignore index eb5696ca..fce837e4 100644 --- a/.gitignore +++ b/.gitignore @@ -11,8 +11,6 @@ yarn.lock \#*\# .\#* -packages/grpc-native-core/src/node/ - .nyc_output/ reports/ diff --git a/README.md b/README.md index cc6c10ee..159fbab4 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ For a comparison of the features available in these two libraries, see [this doc ### C-based Client and Server -Directory: [`packages/grpc-native-core`](https://github.com/grpc/grpc-node/tree/master/packages/grpc-native-core) (see here for installation information) +Directory: [`packages/grpc-native-core`](https://github.com/grpc/grpc-node/tree/grpc@1.24.x/packages/grpc-native-core) (lives in the `grpc@1.24.x` branch) (see here for installation information) npm package: [grpc](https://www.npmjs.com/package/grpc). diff --git a/gulpfile.ts b/gulpfile.ts index 6f4b8f32..367b4d1b 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -18,33 +18,24 @@ import * as gulp from 'gulp'; import * as healthCheck from './packages/grpc-health-check/gulpfile'; import * as jsCore from './packages/grpc-js/gulpfile'; -import * as nativeCore from './packages/grpc-native-core/gulpfile'; import * as protobuf from './packages/proto-loader/gulpfile'; import * as internalTest from './test/gulpfile'; -const root = __dirname; +const installAll = gulp.series(jsCore.install, healthCheck.install, protobuf.install, internalTest.install); -const installAll = gulp.series(jsCore.install, nativeCore.install, healthCheck.install, protobuf.install, internalTest.install); +const lint = gulp.parallel(jsCore.lint); -const installAllWindows = gulp.series(jsCore.install, nativeCore.installWindows, healthCheck.install, protobuf.install, internalTest.install); +const build = gulp.series(jsCore.compile, protobuf.compile); -const lint = gulp.parallel(jsCore.lint, nativeCore.lint); - -const build = gulp.series(jsCore.compile, nativeCore.build, protobuf.compile); - -const link = gulp.series(healthCheck.linkAdd); - -const setup = gulp.series(installAll, link); - -const setupWindows = gulp.series(installAllWindows, link); +const setup = gulp.series(installAll); const setupPureJSInterop = gulp.series(jsCore.install, protobuf.install, internalTest.install); -const clean = gulp.series(jsCore.clean, nativeCore.clean, protobuf.clean); +const clean = gulp.series(jsCore.clean, protobuf.clean); -const cleanAll = gulp.series(jsCore.cleanAll, nativeCore.cleanAll, healthCheck.cleanAll, internalTest.cleanAll, protobuf.cleanAll); +const cleanAll = gulp.series(jsCore.cleanAll, internalTest.cleanAll, protobuf.cleanAll); -const nativeTestOnly = gulp.parallel(nativeCore.test, healthCheck.test); +const nativeTestOnly = gulp.parallel(healthCheck.test); const nativeTest = gulp.series(build, nativeTestOnly); @@ -52,21 +43,15 @@ const testOnly = gulp.parallel(jsCore.test, nativeTestOnly, protobuf.test); const test = gulp.series(build, testOnly, internalTest.test); -const docGen = gulp.series(nativeCore.docGen); - export { installAll, - installAllWindows, lint, build, - link, setup, - setupWindows, setupPureJSInterop, clean, cleanAll, nativeTestOnly, nativeTest, - test, - docGen + test }; diff --git a/package.json b/package.json index cfa23507..70a15fbb 100644 --- a/package.json +++ b/package.json @@ -54,15 +54,13 @@ "include": [ "packages/grpc-health-check/health.js", "packages/grpc-js/build/src/*", - "packages/grpc-native-core/index.js", - "packages/grpc-native-core/src/*.js", "packages/proto-loader/build/src/*" ], "cache": true, "all": true }, "scripts": { - "test": "nyc gulp test && GRPC_DNS_RESOLVER=ares nyc gulp nativeTestOnly", + "test": "nyc gulp test", "coverage": "nyc report --reporter=text-lcov | coveralls" } } diff --git a/packages/grpc-health-check/gulpfile.ts b/packages/grpc-health-check/gulpfile.ts index c01f133d..74c571fe 100644 --- a/packages/grpc-health-check/gulpfile.ts +++ b/packages/grpc-health-check/gulpfile.ts @@ -26,25 +26,13 @@ const healthCheckDir = __dirname; const baseDir = path.resolve(healthCheckDir, '..', '..'); const testDir = path.resolve(healthCheckDir, 'test'); -const cleanLinks = () => del(path.resolve(healthCheckDir, 'node_modules/grpc')); - -const cleanAll = gulp.parallel(cleanLinks); - const runInstall = () => execa('npm', ['install', '--unsafe-perm'], {cwd: healthCheckDir, stdio: 'inherit'}); -const install = gulp.series(cleanLinks, runInstall); - -const linkAdd = (callback) => { - linkSync(healthCheckDir, './node_modules/grpc', '../grpc-native-core'); - callback(); -} +const install = gulp.series(runInstall); const test = () => gulp.src(`${testDir}/*.js`).pipe(mocha({reporter: 'mocha-jenkins-reporter'})); export { - cleanLinks, - cleanAll, install, - linkAdd, test } \ No newline at end of file diff --git a/run-tests.bat b/run-tests.bat index 64396be1..1eebbd4a 100644 --- a/run-tests.bat +++ b/run-tests.bat @@ -54,7 +54,7 @@ for %%v in (8 10 12) do ( node -e "process.exit(process.version.startsWith('v%%v') ? 0 : -1)" || goto :error call .\node_modules\.bin\gulp cleanAll || SET FAILED=1 - call .\node_modules\.bin\gulp setupWindows || SET FAILED=1 + call .\node_modules\.bin\gulp setup || SET FAILED=1 call .\node_modules\.bin\gulp test || SET FAILED=1 cmd.exe /c "SET GRPC_DNS_RESOLVER=ares& call .\node_modules\.bin\gulp nativeTestOnly" || SET FAILED=1 ) diff --git a/templates/tools/release/kokoro/linux.template b/templates/tools/release/kokoro/linux.template deleted file mode 100644 index a1cf84c8..00000000 --- a/templates/tools/release/kokoro/linux.template +++ /dev/null @@ -1,48 +0,0 @@ -%YAML 1.2 ---- -foreach: linux_configs -output_name: ${selected.name}.cfg -template: | - # Copyright 2020 gRPC authors. - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - - # Config file for Kokoro (in protobuf text format) - - build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" - env_vars { - key: "RUNTIME" - value: "${selected.runtime}" - } - env_vars { - key: "ARCH" - value: "${selected.arch}" - } - env_vars { - key: "VERSION" - %if selected.runtime == "node": - value: "${selected.version}.0.0" - %else: - value: "${selected.version}.0" - %endif - } - env_vars { - key: "LIBC" - value: "${selected.libc}" - } - action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } - } diff --git a/templates/tools/release/kokoro/macos.template b/templates/tools/release/kokoro/macos.template deleted file mode 100644 index 67c0c7ff..00000000 --- a/templates/tools/release/kokoro/macos.template +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.2 ---- -foreach: mac_configs -output_name: ${selected.name}.cfg -template: | - # Copyright 2020 gRPC authors. - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - - # Config file for Kokoro (in protobuf text format) - - build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" - env_vars { - key: "RUNTIME" - value: "${selected.runtime}" - } - env_vars { - key: "ARCH" - value: "${selected.arch}" - } - env_vars { - key: "VERSION" - %if selected.runtime == "node": - value: "${selected.version}.0.0" - %else: - value: "${selected.version}.0" - %endif - } - action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } - } diff --git a/templates/tools/release/kokoro/windows.template b/templates/tools/release/kokoro/windows.template deleted file mode 100644 index a19dcfa1..00000000 --- a/templates/tools/release/kokoro/windows.template +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.2 ---- -foreach: mac_configs -output_name: ${selected.name}.cfg -template: | - # Copyright 2020 gRPC authors. - # - # Licensed under the Apache License, Version 2.0 (the "License"); - # you may not use this file except in compliance with the License. - # You may obtain a copy of the License at - # - # http://www.apache.org/licenses/LICENSE-2.0 - # - # Unless required by applicable law or agreed to in writing, software - # distributed under the License is distributed on an "AS IS" BASIS, - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - # See the License for the specific language governing permissions and - # limitations under the License. - - # Config file for Kokoro (in protobuf text format) - - build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" - env_vars { - key: "RUNTIME" - value: "${selected.runtime}" - } - env_vars { - key: "ARCH" - value: "${selected.arch}" - } - env_vars { - key: "VERSION" - %if selected.runtime == "node": - value: "${selected.version}.0.0" - %else: - value: "${selected.version}.0" - %endif - } - action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } - } diff --git a/test-grpc-submodule.sh b/test-grpc-submodule.sh deleted file mode 100755 index 862b70c2..00000000 --- a/test-grpc-submodule.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# Copyright 2017 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# This script updates the gRPC submodule to a given reference and run tests - -# cd to gRPC-node root directory -cd $(dirname $0) - -cd packages/grpc-native-core/deps/grpc/ - -# PR references are needed to test PRs from grpc/grpc -git fetch --tags --progress https://github.com/grpc/grpc.git +refs/pull/*:refs/remotes/origin/pr/* -git checkout $@ -git submodule update --init -cd ../../../.. - -packages/grpc-native-core/tools/buildgen/generate_projects.sh - -./run-tests.sh diff --git a/test/any_grpc.js b/test/any_grpc.js index 0c86321f..2f161ff7 100644 --- a/test/any_grpc.js +++ b/test/any_grpc.js @@ -27,7 +27,7 @@ function getImplementation(globalField) { if (impl === 'js') { return require(`../packages/grpc-${impl}`); } else if (impl === 'native') { - return require(`../packages/grpc-${impl}-core`); + return require('grpc'); } throw new Error([ diff --git a/test/api/interop_extra_test.js b/test/api/interop_extra_test.js index 401ec621..b798f1a6 100644 --- a/test/api/interop_extra_test.js +++ b/test/api/interop_extra_test.js @@ -31,7 +31,7 @@ const protoPackage = protoLoader.loadSync( {keepCase: true, defaults: true, enums: String, - includeDirs: [__dirname + '/../../packages/grpc-native-core/deps/grpc']}); + includeDirs: [__dirname + '/../proto/']}); const testProto = grpc.loadPackageDefinition(protoPackage).grpc.testing; function multiDone(done, count) { diff --git a/test/gulpfile.ts b/test/gulpfile.ts index b5d68dfc..d29404a6 100644 --- a/test/gulpfile.ts +++ b/test/gulpfile.ts @@ -43,19 +43,15 @@ const runTestsWithFixture = (server, client) => () => new Promise((resolve, reje .on('error', reject); }); -const testNativeClientNativeServer = runTestsWithFixture('native', 'native'); const testJsClientNativeServer = runTestsWithFixture('native', 'js'); const testNativeClientJsServer = runTestsWithFixture('js', 'native'); const testJsClientJsServer = runTestsWithFixture('js', 'js'); -const test = semver.satisfies(process.version, '^8.13.0 || >=10.10.0') ? - gulp.series( - testNativeClientNativeServer, +const test = gulp.series( testJsClientNativeServer, testNativeClientJsServer, testJsClientJsServer - ) : - testNativeClientNativeServer; + ); export { install, diff --git a/test/interop/interop_client.js b/test/interop/interop_client.js index 751264f2..1c2ec8f3 100644 --- a/test/interop/interop_client.js +++ b/test/interop/interop_client.js @@ -29,7 +29,7 @@ var protoPackage = protoLoader.loadSync( {keepCase: true, defaults: true, enums: String, - includeDirs: [__dirname + '/../../packages/grpc-native-core/deps/grpc']}); + includeDirs: [__dirname + '/../proto/']}); var testProto = grpc.loadPackageDefinition(protoPackage).grpc.testing; var assert = require('assert'); diff --git a/test/interop/interop_server.js b/test/interop/interop_server.js index c77643e8..cf7ae354 100644 --- a/test/interop/interop_server.js +++ b/test/interop/interop_server.js @@ -31,7 +31,7 @@ var protoPackage = protoLoader.loadSync( {keepCase: true, defaults: true, enums: String, - includeDirs: [__dirname + '/../../packages/grpc-native-core/deps/grpc']}); + includeDirs: [__dirname + '/../proto/']}); var testProto = grpc.loadPackageDefinition(protoPackage).grpc.testing; var ECHO_INITIAL_KEY = 'x-grpc-test-echo-initial'; diff --git a/test/kokoro-nodejs-build-test.bat b/test/kokoro-nodejs-build-test.bat index 3f488dee..ea45c3f8 100644 --- a/test/kokoro-nodejs-build-test.bat +++ b/test/kokoro-nodejs-build-test.bat @@ -16,7 +16,6 @@ cd /d %~dp0 cd .. call ./tools/release/kokoro-grpc-tools.bat || goto :error -call ./tools/release/kokoro-nodejs.bat || goto :error goto :EOF diff --git a/test/kokoro-nodejs-build-test.sh b/test/kokoro-nodejs-build-test.sh index 4b0cefca..d3b2a546 100755 --- a/test/kokoro-nodejs-build-test.sh +++ b/test/kokoro-nodejs-build-test.sh @@ -17,5 +17,4 @@ set -e cd $(dirname $0)/.. base_dir=$(pwd) -./tools/release/kokoro-nodejs.sh ./tools/release/kokoro-grpc-tools.sh \ No newline at end of file diff --git a/test/kokoro.bat b/test/kokoro.bat index 3190c141..a022a3f0 100644 --- a/test/kokoro.bat +++ b/test/kokoro.bat @@ -17,6 +17,4 @@ cd /d %~dp0 cd .. -git submodule update --init --recursive - .\run-tests.bat diff --git a/test/kokoro.sh b/test/kokoro.sh index 0caeb1cf..238a28a4 100755 --- a/test/kokoro.sh +++ b/test/kokoro.sh @@ -13,22 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Deleting Ruby. -rm -rf ~/.rvm - set -e cd $(dirname $0)/.. -OS=$(uname) -if [ "$OS" = "Darwin" ] -then - brew install make - PATH="$(brew --prefix)/opt/make/libexec/gnubin:$PATH" -fi - -# Install gRPC and its submodules. -git submodule update --init --recursive - -./packages/grpc-native-core/tools/buildgen/generate_projects.sh - ./run-tests.sh diff --git a/test/kokoro/linux-build-electron.cfg b/test/kokoro/linux-build-electron.cfg deleted file mode 100644 index 28c510ba..00000000 --- a/test/kokoro/linux-build-electron.cfg +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2018 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -# Location of the continuous shell script in repository. -build_file: "grpc-node/tools/release/kokoro-electron.sh" -timeout_mins: 60 diff --git a/test/kokoro/macos-build-electron.cfg b/test/kokoro/macos-build-electron.cfg deleted file mode 100644 index 28c510ba..00000000 --- a/test/kokoro/macos-build-electron.cfg +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2018 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -# Location of the continuous shell script in repository. -build_file: "grpc-node/tools/release/kokoro-electron.sh" -timeout_mins: 60 diff --git a/test/kokoro/windows-build-electron.cfg b/test/kokoro/windows-build-electron.cfg deleted file mode 100644 index 7017d0ae..00000000 --- a/test/kokoro/windows-build-electron.cfg +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2018 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -# Location of the continuous shell script in repository. -build_file: "grpc-node/tools/release/kokoro-electron.bat" -timeout_mins: 120 diff --git a/test/package.json b/test/package.json index 76423297..2867bc77 100644 --- a/test/package.json +++ b/test/package.json @@ -16,6 +16,7 @@ "dependencies": { "express": "^4.16.3", "google-auth-library": "^0.9.2", + "grpc": "^1.24.2", "lodash": "^4.17.4", "poisson-process": "^1.0.0" } diff --git a/test/performance/benchmark_client.js b/test/performance/benchmark_client.js index 1b964b25..42605a2f 100644 --- a/test/performance/benchmark_client.js +++ b/test/performance/benchmark_client.js @@ -44,7 +44,7 @@ var protoPackage = protoLoader.loadSync( defaults: true, enums: String, oneofs: true, - includeDirs: [__dirname + '/../../packages/grpc-native-core/deps/grpc']}); + includeDirs: [__dirname + '/../proto/']}); var serviceProto = grpc.loadPackageDefinition(protoPackage).grpc.testing; /** diff --git a/test/performance/benchmark_server.js b/test/performance/benchmark_server.js index 013f8181..64128b9d 100644 --- a/test/performance/benchmark_server.js +++ b/test/performance/benchmark_server.js @@ -39,7 +39,7 @@ var protoPackage = protoLoader.loadSync( defaults: true, enums: String, oneofs: true, - includeDirs: [__dirname + '/../../packages/grpc-native-core/deps/grpc']}); + includeDirs: [__dirname + '/../proto']}); var serviceProto = grpc.loadPackageDefinition(protoPackage).grpc.testing; /** diff --git a/test/performance/worker.js b/test/performance/worker.js index df1fb05a..86f17df2 100644 --- a/test/performance/worker.js +++ b/test/performance/worker.js @@ -30,7 +30,7 @@ var protoPackage = protoLoader.loadSync( defaults: true, enums: String, oneofs: true, - includeDirs: [__dirname + '/../../packages/grpc-native-core/deps/grpc']}); + includeDirs: [__dirname + '/../proto/']}); var serviceProto = grpc.loadPackageDefinition(protoPackage).grpc.testing; function runServer(port, benchmark_impl, callback) { diff --git a/test/proto/src/proto/grpc/core/stats.proto b/test/proto/src/proto/grpc/core/stats.proto new file mode 100644 index 00000000..d853ba4d --- /dev/null +++ b/test/proto/src/proto/grpc/core/stats.proto @@ -0,0 +1,38 @@ +// Copyright 2017 gRPC authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package grpc.core; + +message Bucket { + double start = 1; + uint64 count = 2; +} + +message Histogram { + repeated Bucket buckets = 1; +} + +message Metric { + string name = 1; + oneof value { + uint64 count = 10; + Histogram histogram = 11; + } +} + +message Stats { + repeated Metric metrics = 1; +} diff --git a/test/proto/src/proto/grpc/testing/benchmark_service.proto b/test/proto/src/proto/grpc/testing/benchmark_service.proto new file mode 100644 index 00000000..439183a7 --- /dev/null +++ b/test/proto/src/proto/grpc/testing/benchmark_service.proto @@ -0,0 +1,44 @@ +// Copyright 2015 gRPC authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// An integration test service that covers all the method signature permutations +// of unary/streaming requests/responses. +syntax = "proto3"; + +import "src/proto/grpc/testing/messages.proto"; + +package grpc.testing; + +service BenchmarkService { + // One request followed by one response. + // The server returns the client payload as-is. + rpc UnaryCall(SimpleRequest) returns (SimpleResponse); + + // Repeated sequence of one request followed by one response. + // Should be called streaming ping-pong + // The server returns the client payload as-is on each response + rpc StreamingCall(stream SimpleRequest) returns (stream SimpleResponse); + + // Single-sided unbounded streaming from client to server + // The server returns the client payload as-is once the client does WritesDone + rpc StreamingFromClient(stream SimpleRequest) returns (SimpleResponse); + + // Single-sided unbounded streaming from server to client + // The server repeatedly returns the client payload as-is + rpc StreamingFromServer(SimpleRequest) returns (stream SimpleResponse); + + // Two-sided unbounded streaming between server to client + // Both sides send the content of their own choice to the other + rpc StreamingBothWays(stream SimpleRequest) returns (stream SimpleResponse); +} diff --git a/test/proto/src/proto/grpc/testing/control.proto b/test/proto/src/proto/grpc/testing/control.proto new file mode 100644 index 00000000..d22cd325 --- /dev/null +++ b/test/proto/src/proto/grpc/testing/control.proto @@ -0,0 +1,289 @@ +// Copyright 2015 gRPC authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +import "src/proto/grpc/testing/payloads.proto"; +import "src/proto/grpc/testing/stats.proto"; + +package grpc.testing; + +enum ClientType { + // Many languages support a basic distinction between using + // sync or async client, and this allows the specification + SYNC_CLIENT = 0; + ASYNC_CLIENT = 1; + OTHER_CLIENT = 2; // used for some language-specific variants + CALLBACK_CLIENT = 3; +} + +enum ServerType { + SYNC_SERVER = 0; + ASYNC_SERVER = 1; + ASYNC_GENERIC_SERVER = 2; + OTHER_SERVER = 3; // used for some language-specific variants + CALLBACK_SERVER = 4; +} + +enum RpcType { + UNARY = 0; + STREAMING = 1; + STREAMING_FROM_CLIENT = 2; + STREAMING_FROM_SERVER = 3; + STREAMING_BOTH_WAYS = 4; +} + +// Parameters of poisson process distribution, which is a good representation +// of activity coming in from independent identical stationary sources. +message PoissonParams { + // The rate of arrivals (a.k.a. lambda parameter of the exp distribution). + double offered_load = 1; +} + +// Once an RPC finishes, immediately start a new one. +// No configuration parameters needed. +message ClosedLoopParams {} + +message LoadParams { + oneof load { + ClosedLoopParams closed_loop = 1; + PoissonParams poisson = 2; + }; +} + +// presence of SecurityParams implies use of TLS +message SecurityParams { + bool use_test_ca = 1; + string server_host_override = 2; + string cred_type = 3; +} + +message ChannelArg { + string name = 1; + oneof value { + string str_value = 2; + int32 int_value = 3; + } +} + +message ClientConfig { + // List of targets to connect to. At least one target needs to be specified. + repeated string server_targets = 1; + ClientType client_type = 2; + SecurityParams security_params = 3; + // How many concurrent RPCs to start for each channel. + // For synchronous client, use a separate thread for each outstanding RPC. + int32 outstanding_rpcs_per_channel = 4; + // Number of independent client channels to create. + // i-th channel will connect to server_target[i % server_targets.size()] + int32 client_channels = 5; + // Only for async client. Number of threads to use to start/manage RPCs. + int32 async_client_threads = 7; + RpcType rpc_type = 8; + // The requested load for the entire client (aggregated over all the threads). + LoadParams load_params = 10; + PayloadConfig payload_config = 11; + HistogramParams histogram_params = 12; + + // Specify the cores we should run the client on, if desired + repeated int32 core_list = 13; + int32 core_limit = 14; + + // If we use an OTHER_CLIENT client_type, this string gives more detail + string other_client_api = 15; + + repeated ChannelArg channel_args = 16; + + // Number of threads that share each completion queue + int32 threads_per_cq = 17; + + // Number of messages on a stream before it gets finished/restarted + int32 messages_per_stream = 18; + + // Use coalescing API when possible. + bool use_coalesce_api = 19; + + // If 0, disabled. Else, specifies the period between gathering latency + // medians in milliseconds. + int32 median_latency_collection_interval_millis = 20; + + // Number of client processes. 0 indicates no restriction. + int32 client_processes = 21; +} + +message ClientStatus { ClientStats stats = 1; } + +// Request current stats +message Mark { + // if true, the stats will be reset after taking their snapshot. + bool reset = 1; +} + +message ClientArgs { + oneof argtype { + ClientConfig setup = 1; + Mark mark = 2; + } +} + +message ServerConfig { + ServerType server_type = 1; + SecurityParams security_params = 2; + // Port on which to listen. Zero means pick unused port. + int32 port = 4; + // Only for async server. Number of threads used to serve the requests. + int32 async_server_threads = 7; + // Specify the number of cores to limit server to, if desired + int32 core_limit = 8; + // payload config, used in generic server. + // Note this must NOT be used in proto (non-generic) servers. For proto servers, + // 'response sizes' must be configured from the 'response_size' field of the + // 'SimpleRequest' objects in RPC requests. + PayloadConfig payload_config = 9; + + // Specify the cores we should run the server on, if desired + repeated int32 core_list = 10; + + // If we use an OTHER_SERVER client_type, this string gives more detail + string other_server_api = 11; + + // Number of threads that share each completion queue + int32 threads_per_cq = 12; + + // c++-only options (for now) -------------------------------- + + // Buffer pool size (no buffer pool specified if unset) + int32 resource_quota_size = 1001; + repeated ChannelArg channel_args = 1002; + + // Number of server processes. 0 indicates no restriction. + int32 server_processes = 21; +} + +message ServerArgs { + oneof argtype { + ServerConfig setup = 1; + Mark mark = 2; + } +} + +message ServerStatus { + ServerStats stats = 1; + // the port bound by the server + int32 port = 2; + // Number of cores available to the server + int32 cores = 3; +} + +message CoreRequest { +} + +message CoreResponse { + // Number of cores available on the server + int32 cores = 1; +} + +message Void { +} + +// A single performance scenario: input to qps_json_driver +message Scenario { + // Human readable name for this scenario + string name = 1; + // Client configuration + ClientConfig client_config = 2; + // Number of clients to start for the test + int32 num_clients = 3; + // Server configuration + ServerConfig server_config = 4; + // Number of servers to start for the test + int32 num_servers = 5; + // Warmup period, in seconds + int32 warmup_seconds = 6; + // Benchmark time, in seconds + int32 benchmark_seconds = 7; + // Number of workers to spawn locally (usually zero) + int32 spawn_local_worker_count = 8; +} + +// A set of scenarios to be run with qps_json_driver +message Scenarios { + repeated Scenario scenarios = 1; +} + +// Basic summary that can be computed from ClientStats and ServerStats +// once the scenario has finished. +message ScenarioResultSummary +{ + // Total number of operations per second over all clients. What is counted as 1 'operation' depends on the benchmark scenarios: + // For unary benchmarks, an operation is processing of a single unary RPC. + // For streaming benchmarks, an operation is processing of a single ping pong of request and response. + double qps = 1; + // QPS per server core. + double qps_per_server_core = 2; + // The total server cpu load based on system time across all server processes, expressed as percentage of a single cpu core. + // For example, 85 implies 85% of a cpu core, 125 implies 125% of a cpu core. Since we are accumulating the cpu load across all the server + // processes, the value could > 100 when there are multiple servers or a single server using multiple threads and cores. + // Same explanation for the total client cpu load below. + double server_system_time = 3; + // The total server cpu load based on user time across all server processes, expressed as percentage of a single cpu core. (85 => 85%, 125 => 125%) + double server_user_time = 4; + // The total client cpu load based on system time across all client processes, expressed as percentage of a single cpu core. (85 => 85%, 125 => 125%) + double client_system_time = 5; + // The total client cpu load based on user time across all client processes, expressed as percentage of a single cpu core. (85 => 85%, 125 => 125%) + double client_user_time = 6; + + // X% latency percentiles (in nanoseconds) + double latency_50 = 7; + double latency_90 = 8; + double latency_95 = 9; + double latency_99 = 10; + double latency_999 = 11; + + // server cpu usage percentage + double server_cpu_usage = 12; + + // Number of requests that succeeded/failed + double successful_requests_per_second = 13; + double failed_requests_per_second = 14; + + // Number of polls called inside completion queue per request + double client_polls_per_request = 15; + double server_polls_per_request = 16; + + // Queries per CPU-sec over all servers or clients + double server_queries_per_cpu_sec = 17; + double client_queries_per_cpu_sec = 18; +} + +// Results of a single benchmark scenario. +message ScenarioResult { + // Inputs used to run the scenario. + Scenario scenario = 1; + // Histograms from all clients merged into one histogram. + HistogramData latencies = 2; + // Client stats for each client + repeated ClientStats client_stats = 3; + // Server stats for each server + repeated ServerStats server_stats = 4; + // Number of cores available to each server + repeated int32 server_cores = 5; + // An after-the-fact computed summary + ScenarioResultSummary summary = 6; + // Information on success or failure of each worker + repeated bool client_success = 7; + repeated bool server_success = 8; + // Number of failed requests (one row per status code seen) + repeated RequestResultCount request_results = 9; +} diff --git a/test/proto/src/proto/grpc/testing/empty.proto b/test/proto/src/proto/grpc/testing/empty.proto new file mode 100644 index 00000000..cb397206 --- /dev/null +++ b/test/proto/src/proto/grpc/testing/empty.proto @@ -0,0 +1,28 @@ + +// Copyright 2015 gRPC authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package grpc.testing; + +// An empty message that you can re-use to avoid defining duplicated empty +// messages in your project. A typical example is to use it as argument or the +// return value of a service API. For instance: +// +// service Foo { +// rpc Bar (grpc.testing.Empty) returns (grpc.testing.Empty) { }; +// }; +// +message Empty {} diff --git a/test/proto/src/proto/grpc/testing/messages.proto b/test/proto/src/proto/grpc/testing/messages.proto new file mode 100644 index 00000000..5b504f3b --- /dev/null +++ b/test/proto/src/proto/grpc/testing/messages.proto @@ -0,0 +1,209 @@ + +// Copyright 2015-2016 gRPC authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Message definitions to be used by integration test service definitions. + +syntax = "proto3"; + +package grpc.testing; + +// TODO(dgq): Go back to using well-known types once +// https://github.com/grpc/grpc/issues/6980 has been fixed. +// import "google/protobuf/wrappers.proto"; +message BoolValue { + // The bool value. + bool value = 1; +} + +// The type of payload that should be returned. +enum PayloadType { + // Compressable text format. + COMPRESSABLE = 0; +} + +// A block of data, to simply increase gRPC message size. +message Payload { + // The type of data in body. + PayloadType type = 1; + // Primary contents of payload. + bytes body = 2; +} + +// A protobuf representation for grpc status. This is used by test +// clients to specify a status that the server should attempt to return. +message EchoStatus { + int32 code = 1; + string message = 2; +} + +// The type of route that a client took to reach a server w.r.t. gRPCLB. +// The server must fill in "fallback" if it detects that the RPC reached +// the server via the "gRPCLB fallback" path, and "backend" if it detects +// that the RPC reached the server via "gRPCLB backend" path (i.e. if it got +// the address of this server from the gRPCLB server BalanceLoad RPC). Exactly +// how this detection is done is context and server dependent. +enum GrpclbRouteType { + // Server didn't detect the route that a client took to reach it. + GRPCLB_ROUTE_TYPE_UNKNOWN = 0; + // Indicates that a client reached a server via gRPCLB fallback. + GRPCLB_ROUTE_TYPE_FALLBACK = 1; + // Indicates that a client reached a server as a gRPCLB-given backend. + GRPCLB_ROUTE_TYPE_BACKEND = 2; +} + +// Unary request. +message SimpleRequest { + // Desired payload type in the response from the server. + // If response_type is RANDOM, server randomly chooses one from other formats. + PayloadType response_type = 1; + + // Desired payload size in the response from the server. + int32 response_size = 2; + + // Optional input payload sent along with the request. + Payload payload = 3; + + // Whether SimpleResponse should include username. + bool fill_username = 4; + + // Whether SimpleResponse should include OAuth scope. + bool fill_oauth_scope = 5; + + // Whether to request the server to compress the response. This field is + // "nullable" in order to interoperate seamlessly with clients not able to + // implement the full compression tests by introspecting the call to verify + // the response's compression status. + BoolValue response_compressed = 6; + + // Whether server should return a given status + EchoStatus response_status = 7; + + // Whether the server should expect this request to be compressed. + BoolValue expect_compressed = 8; + + // Whether SimpleResponse should include server_id. + bool fill_server_id = 9; + + // Whether SimpleResponse should include grpclb_route_type. + bool fill_grpclb_route_type = 10; +} + +// Unary response, as configured by the request. +message SimpleResponse { + // Payload to increase message size. + Payload payload = 1; + // The user the request came from, for verifying authentication was + // successful when the client expected it. + string username = 2; + // OAuth scope. + string oauth_scope = 3; + + // Server ID. This must be unique among different server instances, + // but the same across all RPC's made to a particular server instance. + string server_id = 4; + // gRPCLB Path. + GrpclbRouteType grpclb_route_type = 5; + + // Server hostname. + string hostname = 6; +} + +// Client-streaming request. +message StreamingInputCallRequest { + // Optional input payload sent along with the request. + Payload payload = 1; + + // Whether the server should expect this request to be compressed. This field + // is "nullable" in order to interoperate seamlessly with servers not able to + // implement the full compression tests by introspecting the call to verify + // the request's compression status. + BoolValue expect_compressed = 2; + + // Not expecting any payload from the response. +} + +// Client-streaming response. +message StreamingInputCallResponse { + // Aggregated size of payloads received from the client. + int32 aggregated_payload_size = 1; +} + +// Configuration for a particular response. +message ResponseParameters { + // Desired payload sizes in responses from the server. + int32 size = 1; + + // Desired interval between consecutive responses in the response stream in + // microseconds. + int32 interval_us = 2; + + // Whether to request the server to compress the response. This field is + // "nullable" in order to interoperate seamlessly with clients not able to + // implement the full compression tests by introspecting the call to verify + // the response's compression status. + BoolValue compressed = 3; +} + +// Server-streaming request. +message StreamingOutputCallRequest { + // Desired payload type in the response from the server. + // If response_type is RANDOM, the payload from each response in the stream + // might be of different types. This is to simulate a mixed type of payload + // stream. + PayloadType response_type = 1; + + // Configuration for each expected response message. + repeated ResponseParameters response_parameters = 2; + + // Optional input payload sent along with the request. + Payload payload = 3; + + // Whether server should return a given status + EchoStatus response_status = 7; +} + +// Server-streaming response, as configured by the request and parameters. +message StreamingOutputCallResponse { + // Payload to increase response size. + Payload payload = 1; +} + +// For reconnect interop test only. +// Client tells server what reconnection parameters it used. +message ReconnectParams { + int32 max_reconnect_backoff_ms = 1; +} + +// For reconnect interop test only. +// Server tells client whether its reconnects are following the spec and the +// reconnect backoffs it saw. +message ReconnectInfo { + bool passed = 1; + repeated int32 backoff_ms = 2; +} + +message LoadBalancerStatsRequest { + // Request stats for the next num_rpcs sent by client. + int32 num_rpcs = 1; + // If num_rpcs have not completed within timeout_sec, return partial results. + int32 timeout_sec = 2; +} + +message LoadBalancerStatsResponse { + // The number of completed RPCs for each peer. + map rpcs_by_peer = 1; + // The number of RPCs that failed to record a remote peer. + int32 num_failures = 2; +} diff --git a/test/proto/src/proto/grpc/testing/metrics.proto b/test/proto/src/proto/grpc/testing/metrics.proto new file mode 100644 index 00000000..90dcba3a --- /dev/null +++ b/test/proto/src/proto/grpc/testing/metrics.proto @@ -0,0 +1,49 @@ +// Copyright 2015-2016 gRPC authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Contains the definitions for a metrics service and the type of metrics +// exposed by the service. +// +// Currently, 'Gauge' (i.e a metric that represents the measured value of +// something at an instant of time) is the only metric type supported by the +// service. +syntax = "proto3"; + +package grpc.testing; + +// Response message containing the gauge name and value +message GaugeResponse { + string name = 1; + oneof value { + int64 long_value = 2; + double double_value = 3; + string string_value = 4; + } +} + +// Request message containing the gauge name +message GaugeRequest { + string name = 1; +} + +message EmptyMessage {} + +service MetricsService { + // Returns the values of all the gauges that are currently being maintained by + // the service + rpc GetAllGauges(EmptyMessage) returns (stream GaugeResponse); + + // Returns the value of one gauge + rpc GetGauge(GaugeRequest) returns (GaugeResponse); +} diff --git a/test/proto/src/proto/grpc/testing/payloads.proto b/test/proto/src/proto/grpc/testing/payloads.proto new file mode 100644 index 00000000..76022656 --- /dev/null +++ b/test/proto/src/proto/grpc/testing/payloads.proto @@ -0,0 +1,40 @@ +// Copyright 2015 gRPC authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package grpc.testing; + +message ByteBufferParams { + int32 req_size = 1; + int32 resp_size = 2; +} + +message SimpleProtoParams { + int32 req_size = 1; + int32 resp_size = 2; +} + +message ComplexProtoParams { + // TODO (vpai): Fill this in once the details of complex, representative + // protos are decided +} + +message PayloadConfig { + oneof payload { + ByteBufferParams bytebuf_params = 1; + SimpleProtoParams simple_params = 2; + ComplexProtoParams complex_params = 3; + } +} diff --git a/test/proto/src/proto/grpc/testing/stats.proto b/test/proto/src/proto/grpc/testing/stats.proto new file mode 100644 index 00000000..705a60ab --- /dev/null +++ b/test/proto/src/proto/grpc/testing/stats.proto @@ -0,0 +1,83 @@ +// Copyright 2015 gRPC authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package grpc.testing; + +import "src/proto/grpc/core/stats.proto"; + +message ServerStats { + // wall clock time change in seconds since last reset + double time_elapsed = 1; + + // change in user time (in seconds) used by the server since last reset + double time_user = 2; + + // change in server time (in seconds) used by the server process and all + // threads since last reset + double time_system = 3; + + // change in total cpu time of the server (data from proc/stat) + uint64 total_cpu_time = 4; + + // change in idle time of the server (data from proc/stat) + uint64 idle_cpu_time = 5; + + // Number of polls called inside completion queue + uint64 cq_poll_count = 6; + + // Core library stats + grpc.core.Stats core_stats = 7; +} + +// Histogram params based on grpc/support/histogram.c +message HistogramParams { + double resolution = 1; // first bucket is [0, 1 + resolution) + double max_possible = 2; // use enough buckets to allow this value +} + +// Histogram data based on grpc/support/histogram.c +message HistogramData { + repeated uint32 bucket = 1; + double min_seen = 2; + double max_seen = 3; + double sum = 4; + double sum_of_squares = 5; + double count = 6; +} + +message RequestResultCount { + int32 status_code = 1; + int64 count = 2; +} + +message ClientStats { + // Latency histogram. Data points are in nanoseconds. + HistogramData latencies = 1; + + // See ServerStats for details. + double time_elapsed = 2; + double time_user = 3; + double time_system = 4; + + // Number of failed requests (one row per status code seen) + repeated RequestResultCount request_results = 5; + + // Number of polls called inside completion queue + uint64 cq_poll_count = 6; + + // Core library stats + grpc.core.Stats core_stats = 7; +} diff --git a/test/proto/src/proto/grpc/testing/test.proto b/test/proto/src/proto/grpc/testing/test.proto new file mode 100644 index 00000000..be5fd043 --- /dev/null +++ b/test/proto/src/proto/grpc/testing/test.proto @@ -0,0 +1,86 @@ + +// Copyright 2015-2016 gRPC authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// An integration test service that covers all the method signature permutations +// of unary/streaming requests/responses. + +syntax = "proto3"; + +import "src/proto/grpc/testing/empty.proto"; +import "src/proto/grpc/testing/messages.proto"; + +package grpc.testing; + +// A simple service to test the various types of RPCs and experiment with +// performance with various types of payload. +service TestService { + // One empty request followed by one empty response. + rpc EmptyCall(grpc.testing.Empty) returns (grpc.testing.Empty); + + // One request followed by one response. + rpc UnaryCall(SimpleRequest) returns (SimpleResponse); + + // One request followed by one response. Response has cache control + // headers set such that a caching HTTP proxy (such as GFE) can + // satisfy subsequent requests. + rpc CacheableUnaryCall(SimpleRequest) returns (SimpleResponse); + + // One request followed by a sequence of responses (streamed download). + // The server returns the payload with client desired type and sizes. + rpc StreamingOutputCall(StreamingOutputCallRequest) + returns (stream StreamingOutputCallResponse); + + // A sequence of requests followed by one response (streamed upload). + // The server returns the aggregated size of client payload as the result. + rpc StreamingInputCall(stream StreamingInputCallRequest) + returns (StreamingInputCallResponse); + + // A sequence of requests with each request served by the server immediately. + // As one request could lead to multiple responses, this interface + // demonstrates the idea of full duplexing. + rpc FullDuplexCall(stream StreamingOutputCallRequest) + returns (stream StreamingOutputCallResponse); + + // A sequence of requests followed by a sequence of responses. + // The server buffers all the client requests and then serves them in order. A + // stream of responses are returned to the client when the server starts with + // first request. + rpc HalfDuplexCall(stream StreamingOutputCallRequest) + returns (stream StreamingOutputCallResponse); + + // The test server will not implement this method. It will be used + // to test the behavior when clients call unimplemented methods. + rpc UnimplementedCall(grpc.testing.Empty) returns (grpc.testing.Empty); +} + +// A simple service NOT implemented at servers so clients can test for +// that case. +service UnimplementedService { + // A call that no server should implement + rpc UnimplementedCall(grpc.testing.Empty) returns (grpc.testing.Empty); +} + +// A service used to control reconnect server. +service ReconnectService { + rpc Start(grpc.testing.ReconnectParams) returns (grpc.testing.Empty); + rpc Stop(grpc.testing.Empty) returns (grpc.testing.ReconnectInfo); +} + +// A service used to obtain stats for verifying LB behavior. +service LoadBalancerStatsService { + // Gets the backend distribution for RPCs sent by a test client. + rpc GetClientStats(LoadBalancerStatsRequest) + returns (LoadBalancerStatsResponse) {} +} diff --git a/test/proto/src/proto/grpc/testing/worker_service.proto b/test/proto/src/proto/grpc/testing/worker_service.proto new file mode 100644 index 00000000..aee817d4 --- /dev/null +++ b/test/proto/src/proto/grpc/testing/worker_service.proto @@ -0,0 +1,45 @@ +// Copyright 2015 gRPC authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// An integration test service that covers all the method signature permutations +// of unary/streaming requests/responses. +syntax = "proto3"; + +import "src/proto/grpc/testing/control.proto"; + +package grpc.testing; + +service WorkerService { + // Start server with specified workload. + // First request sent specifies the ServerConfig followed by ServerStatus + // response. After that, a "Mark" can be sent anytime to request the latest + // stats. Closing the stream will initiate shutdown of the test server + // and once the shutdown has finished, the OK status is sent to terminate + // this RPC. + rpc RunServer(stream ServerArgs) returns (stream ServerStatus); + + // Start client with specified workload. + // First request sent specifies the ClientConfig followed by ClientStatus + // response. After that, a "Mark" can be sent anytime to request the latest + // stats. Closing the stream will initiate shutdown of the test client + // and once the shutdown has finished, the OK status is sent to terminate + // this RPC. + rpc RunClient(stream ClientArgs) returns (stream ClientStatus); + + // Just return the core count - unary call + rpc CoreCount(CoreRequest) returns (CoreResponse); + + // Quit this worker + rpc QuitWorker(Void) returns (Void); +} diff --git a/test/stress/metrics_client.js b/test/stress/metrics_client.js index c0cb3eb8..a5c94059 100644 --- a/test/stress/metrics_client.js +++ b/test/stress/metrics_client.js @@ -21,7 +21,7 @@ // TODO(murgatroid99): use multiple grpc implementations var grpc = require('grpc'); -var proto = grpc.load(__dirname + '/../packages/grpc-native-core/ext/grpc/src/proto/grpc/testing/metrics.proto'); +var proto = grpc.load(__dirname + '/../proto/src/proto/grpc/testing/metrics.proto'); var metrics = proto.grpc.testing; function main() { diff --git a/test/stress/metrics_server.js b/test/stress/metrics_server.js index 70848f3b..d8e39086 100644 --- a/test/stress/metrics_server.js +++ b/test/stress/metrics_server.js @@ -23,7 +23,7 @@ var _ = require('lodash'); // TODO(murgatroid99): use multiple grpc implementations var grpc = require('grpc'); -var proto = grpc.load(__dirname + '/../packages/grpc-native-core/ext/grpc/src/proto/grpc/testing/metrics.proto'); +var proto = grpc.load(__dirname + '/../proto/src/proto/grpc/testing/metrics.proto'); var metrics = proto.grpc.testing; function getGauge(call, callback) { diff --git a/tools/release/alpine/Dockerfile b/tools/release/alpine/Dockerfile deleted file mode 100644 index 728ccd02..00000000 --- a/tools/release/alpine/Dockerfile +++ /dev/null @@ -1,2 +0,0 @@ -FROM node:10-alpine -RUN apk add --no-cache python curl bash build-base diff --git a/tools/release/cross/Dockerfile b/tools/release/cross/Dockerfile deleted file mode 100644 index 1e931250..00000000 --- a/tools/release/cross/Dockerfile +++ /dev/null @@ -1,11 +0,0 @@ -FROM debian:stretch - -RUN dpkg --add-architecture i386 -RUN apt-get update -RUN apt-get install -y curl build-essential g++-aarch64-linux-gnu g++-arm-linux-gnueabihf g++-s390x-linux-gnu python libc6-dev:i386 lib32stdc++-6-dev -RUN curl -fsSL get.docker.com | bash - -RUN mkdir /usr/local/nvm -ENV NVM_DIR /usr/local/nvm - -RUN curl curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash diff --git a/tools/release/kokoro-electron.bat b/tools/release/kokoro-electron.bat deleted file mode 100644 index dde9b134..00000000 --- a/tools/release/kokoro-electron.bat +++ /dev/null @@ -1,41 +0,0 @@ -@rem Copyright 2018 gRPC authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem http://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. - -@echo "Starting Windows build" - -powershell -c "& { iwr https://raw.githubusercontent.com/grumpycoders/nvm-ps/master/nvm.ps1 | iex }" - -SET PATH=%APPDATA%\nvm-ps;%APPDATA%\nvm-ps\nodejs;%PATH% -call nvm install 10 -call nvm use 10 - -call npm install -g npm@6.10.x -@rem https://github.com/mapbox/node-pre-gyp/issues/362 -call npm install -g node-gyp@3 - -cd /d %~dp0 -cd ..\.. - -git submodule update --init --recursive - -set ARTIFACTS_OUT=artifacts -cd packages\grpc-native-core -call tools\run_tests\artifacts\build_artifact_electron.bat || goto :error -cd ..\.. - -move packages\grpc-native-core\artifacts . -goto :EOF - -:error -exit /b 1 diff --git a/tools/release/kokoro-electron.sh b/tools/release/kokoro-electron.sh deleted file mode 100755 index fd833503..00000000 --- a/tools/release/kokoro-electron.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash -# Copyright 2018 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Deleting Ruby. -rm -rf ~/.rvm - -curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash -export NVM_DIR="$HOME/.nvm" -[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" - -nvm install 10 -nvm use 10 -npm install -g npm -# https://github.com/mapbox/node-pre-gyp/issues/362 -npm install -g node-gyp@3 - -set -ex -cd $(dirname $0)/../.. -base_dir=$(pwd) - -# Install gRPC and its submodules. -git submodule update --init --recursive - -pip install mako -./packages/grpc-native-core/tools/buildgen/generate_projects.sh - -OS=`uname` - -case $OS in -Linux) - docker build -t kokoro-native-image tools/release/native - docker run -v /var/run/docker.sock:/var/run/docker.sock -v $base_dir:$base_dir kokoro-native-image $base_dir/packages/grpc-native-core/tools/run_tests/artifacts/build_all_linux_artifacts.sh --native-only --electron-only - cp -rv packages/grpc-native-core/artifacts . - ;; -Darwin) - JOBS=8 ARTIFACTS_OUT=$base_dir/artifacts ./packages/grpc-native-core/tools/run_tests/artifacts/build_artifact_electron.sh - ;; -esac diff --git a/tools/release/kokoro-nodejs.bat b/tools/release/kokoro-nodejs.bat deleted file mode 100644 index dd6aecfc..00000000 --- a/tools/release/kokoro-nodejs.bat +++ /dev/null @@ -1,40 +0,0 @@ -@rem Copyright 2018 gRPC authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem http://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. - -@echo "Starting Windows build" - -powershell -c "& { iwr https://raw.githubusercontent.com/grumpycoders/nvm-ps/master/nvm.ps1 | iex }" - -SET PATH=%APPDATA%\nvm-ps;%APPDATA%\nvm-ps\nodejs;%PATH% -call nvm install 10 -call nvm use 10 - -call npm install -g npm@6.10.x -@rem https://github.com/mapbox/node-pre-gyp/issues/362 -call npm install -g node-gyp@3 - -cd /d %~dp0 -cd ..\.. - -git submodule update --init --recursive - -set ARTIFACTS_OUT=%cd%\artifacts -cd packages\grpc-native-core -call tools\run_tests\artifacts\build_artifact_node.bat || goto :error -cd ..\.. - -goto :EOF - -:error -exit /b 1 diff --git a/tools/release/kokoro-nodejs.sh b/tools/release/kokoro-nodejs.sh deleted file mode 100755 index 7ce0a0b6..00000000 --- a/tools/release/kokoro-nodejs.sh +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/bash -# Copyright 2018 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Deleting Ruby. -rm -rf ~/.rvm - -curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash -export NVM_DIR="$HOME/.nvm" -[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" - -nvm install 10 -nvm use 10 -npm install -g npm -# https://github.com/mapbox/node-pre-gyp/issues/362 -npm install -g node-gyp - -set -ex -cd $(dirname $0)/../.. -base_dir=$(pwd) - -# Install gRPC and its submodules. -git submodule update --init --recursive - -pip install mako -./packages/grpc-native-core/tools/buildgen/generate_projects.sh - -OS=`uname` - -case $OS in -Linux) - docker build -t kokoro-native-image tools/release/native - docker build -t kokoro-cross-image tools/release/cross - docker run -v /var/run/docker.sock:/var/run/docker.sock -v $base_dir:$base_dir kokoro-native-image $base_dir/packages/grpc-native-core/tools/run_tests/artifacts/build_all_linux_artifacts.sh --native-only --nodejs-only - cp -rv packages/grpc-native-core/artifacts . - docker run -v /var/run/docker.sock:/var/run/docker.sock -v $base_dir:$base_dir kokoro-cross-image $base_dir/packages/grpc-native-core/tools/run_tests/artifacts/build_all_linux_artifacts.sh --cross-only --nodejs-only - cp -rv packages/grpc-native-core/artifacts . - ;; -Darwin) - JOBS=8 ARTIFACTS_OUT=$base_dir/artifacts ./packages/grpc-native-core/tools/run_tests/artifacts/build_artifact_node.sh - ;; -esac diff --git a/tools/release/kokoro/linux-electron.cfg b/tools/release/kokoro/linux-electron.cfg deleted file mode 100644 index 45f7e505..00000000 --- a/tools/release/kokoro/linux-electron.cfg +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2018 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -# Location of the continuous shell script in repository. -build_file: "grpc-node/tools/release/kokoro-electron.sh" -timeout_mins: 180 -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux-nodejs.cfg b/tools/release/kokoro/linux-nodejs.cfg deleted file mode 100644 index 2a1e3712..00000000 --- a/tools/release/kokoro/linux-nodejs.cfg +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2018 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -# Location of the continuous shell script in repository. -build_file: "grpc-node/tools/release/kokoro-nodejs.sh" -timeout_mins: 180 -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.0_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_1.0_ia32_glibc.cfg deleted file mode 100644 index a68b80ce..00000000 --- a/tools/release/kokoro/linux/electron_1.0_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.0_x64_glibc.cfg b/tools/release/kokoro/linux/electron_1.0_x64_glibc.cfg deleted file mode 100644 index e5a574ee..00000000 --- a/tools/release/kokoro/linux/electron_1.0_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.1_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_1.1_ia32_glibc.cfg deleted file mode 100644 index cac5806c..00000000 --- a/tools/release/kokoro/linux/electron_1.1_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.1.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.1_x64_glibc.cfg b/tools/release/kokoro/linux/electron_1.1_x64_glibc.cfg deleted file mode 100644 index bd7d3a78..00000000 --- a/tools/release/kokoro/linux/electron_1.1_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.1.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.2_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_1.2_ia32_glibc.cfg deleted file mode 100644 index 1f3dfacd..00000000 --- a/tools/release/kokoro/linux/electron_1.2_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.2.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.2_x64_glibc.cfg b/tools/release/kokoro/linux/electron_1.2_x64_glibc.cfg deleted file mode 100644 index 950421e4..00000000 --- a/tools/release/kokoro/linux/electron_1.2_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.2.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.3_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_1.3_ia32_glibc.cfg deleted file mode 100644 index 132f9ce9..00000000 --- a/tools/release/kokoro/linux/electron_1.3_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.3.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.3_x64_glibc.cfg b/tools/release/kokoro/linux/electron_1.3_x64_glibc.cfg deleted file mode 100644 index 713d78e3..00000000 --- a/tools/release/kokoro/linux/electron_1.3_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.3.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.4_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_1.4_ia32_glibc.cfg deleted file mode 100644 index 119a8a6a..00000000 --- a/tools/release/kokoro/linux/electron_1.4_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.4.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.4_x64_glibc.cfg b/tools/release/kokoro/linux/electron_1.4_x64_glibc.cfg deleted file mode 100644 index 35e6575b..00000000 --- a/tools/release/kokoro/linux/electron_1.4_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.4.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.5_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_1.5_ia32_glibc.cfg deleted file mode 100644 index 2d54d45f..00000000 --- a/tools/release/kokoro/linux/electron_1.5_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.5.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.5_x64_glibc.cfg b/tools/release/kokoro/linux/electron_1.5_x64_glibc.cfg deleted file mode 100644 index 4a78562b..00000000 --- a/tools/release/kokoro/linux/electron_1.5_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.5.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.6_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_1.6_ia32_glibc.cfg deleted file mode 100644 index 5f66d51e..00000000 --- a/tools/release/kokoro/linux/electron_1.6_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.6.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.6_x64_glibc.cfg b/tools/release/kokoro/linux/electron_1.6_x64_glibc.cfg deleted file mode 100644 index 8660c3fc..00000000 --- a/tools/release/kokoro/linux/electron_1.6_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.6.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.7_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_1.7_ia32_glibc.cfg deleted file mode 100644 index c73fb0e8..00000000 --- a/tools/release/kokoro/linux/electron_1.7_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.7.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.7_x64_glibc.cfg b/tools/release/kokoro/linux/electron_1.7_x64_glibc.cfg deleted file mode 100644 index bcc6f460..00000000 --- a/tools/release/kokoro/linux/electron_1.7_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.7.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.8_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_1.8_ia32_glibc.cfg deleted file mode 100644 index fd2f2e4d..00000000 --- a/tools/release/kokoro/linux/electron_1.8_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.8.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_1.8_x64_glibc.cfg b/tools/release/kokoro/linux/electron_1.8_x64_glibc.cfg deleted file mode 100644 index c4c8eaf5..00000000 --- a/tools/release/kokoro/linux/electron_1.8_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.8.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_2.0_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_2.0_ia32_glibc.cfg deleted file mode 100644 index fb080a0c..00000000 --- a/tools/release/kokoro/linux/electron_2.0_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "2.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_2.0_x64_glibc.cfg b/tools/release/kokoro/linux/electron_2.0_x64_glibc.cfg deleted file mode 100644 index 8665b79b..00000000 --- a/tools/release/kokoro/linux/electron_2.0_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "2.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_3.0_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_3.0_ia32_glibc.cfg deleted file mode 100644 index cc5c02d8..00000000 --- a/tools/release/kokoro/linux/electron_3.0_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "3.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_3.0_x64_glibc.cfg b/tools/release/kokoro/linux/electron_3.0_x64_glibc.cfg deleted file mode 100644 index 537fd3c2..00000000 --- a/tools/release/kokoro/linux/electron_3.0_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "3.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_3.1_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_3.1_ia32_glibc.cfg deleted file mode 100644 index a5ccfb84..00000000 --- a/tools/release/kokoro/linux/electron_3.1_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "3.1.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_3.1_x64_glibc.cfg b/tools/release/kokoro/linux/electron_3.1_x64_glibc.cfg deleted file mode 100644 index aad9b905..00000000 --- a/tools/release/kokoro/linux/electron_3.1_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "3.1.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_4.1_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_4.1_ia32_glibc.cfg deleted file mode 100644 index 48b8d57d..00000000 --- a/tools/release/kokoro/linux/electron_4.1_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "4.1.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_4.1_x64_glibc.cfg b/tools/release/kokoro/linux/electron_4.1_x64_glibc.cfg deleted file mode 100644 index 83a77d5b..00000000 --- a/tools/release/kokoro/linux/electron_4.1_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "4.1.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_4.2_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_4.2_ia32_glibc.cfg deleted file mode 100644 index 17b1a434..00000000 --- a/tools/release/kokoro/linux/electron_4.2_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "4.2.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_4.2_x64_glibc.cfg b/tools/release/kokoro/linux/electron_4.2_x64_glibc.cfg deleted file mode 100644 index 955c5721..00000000 --- a/tools/release/kokoro/linux/electron_4.2_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "4.2.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_5.0_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_5.0_ia32_glibc.cfg deleted file mode 100644 index 91fbd4a4..00000000 --- a/tools/release/kokoro/linux/electron_5.0_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_5.0_x64_glibc.cfg b/tools/release/kokoro/linux/electron_5.0_x64_glibc.cfg deleted file mode 100644 index 028389ca..00000000 --- a/tools/release/kokoro/linux/electron_5.0_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_6.0_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_6.0_ia32_glibc.cfg deleted file mode 100644 index 67d6816b..00000000 --- a/tools/release/kokoro/linux/electron_6.0_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_6.0_x64_glibc.cfg b/tools/release/kokoro/linux/electron_6.0_x64_glibc.cfg deleted file mode 100644 index fc9bc06a..00000000 --- a/tools/release/kokoro/linux/electron_6.0_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_6.1_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_6.1_ia32_glibc.cfg deleted file mode 100644 index 8d553f8d..00000000 --- a/tools/release/kokoro/linux/electron_6.1_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "6.1.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_6.1_x64_glibc.cfg b/tools/release/kokoro/linux/electron_6.1_x64_glibc.cfg deleted file mode 100644 index 64efd889..00000000 --- a/tools/release/kokoro/linux/electron_6.1_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "6.1.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_7.0_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_7.0_ia32_glibc.cfg deleted file mode 100644 index b02bc494..00000000 --- a/tools/release/kokoro/linux/electron_7.0_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_7.0_x64_glibc.cfg b/tools/release/kokoro/linux/electron_7.0_x64_glibc.cfg deleted file mode 100644 index 0900ddce..00000000 --- a/tools/release/kokoro/linux/electron_7.0_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_7.1_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_7.1_ia32_glibc.cfg deleted file mode 100644 index 15dcb3bd..00000000 --- a/tools/release/kokoro/linux/electron_7.1_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "7.1.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_7.1_x64_glibc.cfg b/tools/release/kokoro/linux/electron_7.1_x64_glibc.cfg deleted file mode 100644 index bc392b71..00000000 --- a/tools/release/kokoro/linux/electron_7.1_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "7.1.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_8.0_ia32_glibc.cfg b/tools/release/kokoro/linux/electron_8.0_ia32_glibc.cfg deleted file mode 100644 index b0b86657..00000000 --- a/tools/release/kokoro/linux/electron_8.0_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/electron_8.0_x64_glibc.cfg b/tools/release/kokoro/linux/electron_8.0_x64_glibc.cfg deleted file mode 100644 index 2e79736f..00000000 --- a/tools/release/kokoro/linux/electron_8.0_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_10_arm64_glibc.cfg b/tools/release/kokoro/linux/node_10_arm64_glibc.cfg deleted file mode 100644 index da090fff..00000000 --- a/tools/release/kokoro/linux/node_10_arm64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm64" -} -env_vars { - key: "VERSION" - value: "10.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_10_arm_glibc.cfg b/tools/release/kokoro/linux/node_10_arm_glibc.cfg deleted file mode 100644 index cc6ad478..00000000 --- a/tools/release/kokoro/linux/node_10_arm_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm" -} -env_vars { - key: "VERSION" - value: "10.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_10_ia32_glibc.cfg b/tools/release/kokoro/linux/node_10_ia32_glibc.cfg deleted file mode 100644 index f7ee1904..00000000 --- a/tools/release/kokoro/linux/node_10_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "10.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_10_s390x_glibc.cfg b/tools/release/kokoro/linux/node_10_s390x_glibc.cfg deleted file mode 100644 index 60935df1..00000000 --- a/tools/release/kokoro/linux/node_10_s390x_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "s390x" -} -env_vars { - key: "VERSION" - value: "10.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_10_x64_glibc.cfg b/tools/release/kokoro/linux/node_10_x64_glibc.cfg deleted file mode 100644 index 0572524d..00000000 --- a/tools/release/kokoro/linux/node_10_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "10.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_10_x64_musl.cfg b/tools/release/kokoro/linux/node_10_x64_musl.cfg deleted file mode 100644 index 0572524d..00000000 --- a/tools/release/kokoro/linux/node_10_x64_musl.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "10.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_11_arm64_glibc.cfg b/tools/release/kokoro/linux/node_11_arm64_glibc.cfg deleted file mode 100644 index 1a633206..00000000 --- a/tools/release/kokoro/linux/node_11_arm64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm64" -} -env_vars { - key: "VERSION" - value: "11.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_11_arm_glibc.cfg b/tools/release/kokoro/linux/node_11_arm_glibc.cfg deleted file mode 100644 index 2f9af1df..00000000 --- a/tools/release/kokoro/linux/node_11_arm_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm" -} -env_vars { - key: "VERSION" - value: "11.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_11_ia32_glibc.cfg b/tools/release/kokoro/linux/node_11_ia32_glibc.cfg deleted file mode 100644 index 94613203..00000000 --- a/tools/release/kokoro/linux/node_11_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "11.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_11_s390x_glibc.cfg b/tools/release/kokoro/linux/node_11_s390x_glibc.cfg deleted file mode 100644 index f17a793f..00000000 --- a/tools/release/kokoro/linux/node_11_s390x_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "s390x" -} -env_vars { - key: "VERSION" - value: "11.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_11_x64_glibc.cfg b/tools/release/kokoro/linux/node_11_x64_glibc.cfg deleted file mode 100644 index b2327fc4..00000000 --- a/tools/release/kokoro/linux/node_11_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "11.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_11_x64_musl.cfg b/tools/release/kokoro/linux/node_11_x64_musl.cfg deleted file mode 100644 index b2327fc4..00000000 --- a/tools/release/kokoro/linux/node_11_x64_musl.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "11.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_12_arm64_glibc.cfg b/tools/release/kokoro/linux/node_12_arm64_glibc.cfg deleted file mode 100644 index d7669485..00000000 --- a/tools/release/kokoro/linux/node_12_arm64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm64" -} -env_vars { - key: "VERSION" - value: "12.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_12_arm_glibc.cfg b/tools/release/kokoro/linux/node_12_arm_glibc.cfg deleted file mode 100644 index 92b71d56..00000000 --- a/tools/release/kokoro/linux/node_12_arm_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm" -} -env_vars { - key: "VERSION" - value: "12.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_12_ia32_glibc.cfg b/tools/release/kokoro/linux/node_12_ia32_glibc.cfg deleted file mode 100644 index 6677c7d9..00000000 --- a/tools/release/kokoro/linux/node_12_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "12.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_12_s390x_glibc.cfg b/tools/release/kokoro/linux/node_12_s390x_glibc.cfg deleted file mode 100644 index ad83ac49..00000000 --- a/tools/release/kokoro/linux/node_12_s390x_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "s390x" -} -env_vars { - key: "VERSION" - value: "12.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_12_x64_glibc.cfg b/tools/release/kokoro/linux/node_12_x64_glibc.cfg deleted file mode 100644 index d29e134e..00000000 --- a/tools/release/kokoro/linux/node_12_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "12.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_12_x64_musl.cfg b/tools/release/kokoro/linux/node_12_x64_musl.cfg deleted file mode 100644 index d29e134e..00000000 --- a/tools/release/kokoro/linux/node_12_x64_musl.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "12.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_13_arm64_glibc.cfg b/tools/release/kokoro/linux/node_13_arm64_glibc.cfg deleted file mode 100644 index b9d7d4f7..00000000 --- a/tools/release/kokoro/linux/node_13_arm64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm64" -} -env_vars { - key: "VERSION" - value: "13.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_13_arm_glibc.cfg b/tools/release/kokoro/linux/node_13_arm_glibc.cfg deleted file mode 100644 index 2f4a95a0..00000000 --- a/tools/release/kokoro/linux/node_13_arm_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm" -} -env_vars { - key: "VERSION" - value: "13.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_13_ia32_glibc.cfg b/tools/release/kokoro/linux/node_13_ia32_glibc.cfg deleted file mode 100644 index 7fde2284..00000000 --- a/tools/release/kokoro/linux/node_13_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "13.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_13_s390x_glibc.cfg b/tools/release/kokoro/linux/node_13_s390x_glibc.cfg deleted file mode 100644 index dcf25cf6..00000000 --- a/tools/release/kokoro/linux/node_13_s390x_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "s390x" -} -env_vars { - key: "VERSION" - value: "13.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_13_x64_glibc.cfg b/tools/release/kokoro/linux/node_13_x64_glibc.cfg deleted file mode 100644 index cb102fa9..00000000 --- a/tools/release/kokoro/linux/node_13_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "13.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_13_x64_musl.cfg b/tools/release/kokoro/linux/node_13_x64_musl.cfg deleted file mode 100644 index cb102fa9..00000000 --- a/tools/release/kokoro/linux/node_13_x64_musl.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "13.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_4_arm64_glibc.cfg b/tools/release/kokoro/linux/node_4_arm64_glibc.cfg deleted file mode 100644 index a5478f30..00000000 --- a/tools/release/kokoro/linux/node_4_arm64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm64" -} -env_vars { - key: "VERSION" - value: "4.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_4_arm_glibc.cfg b/tools/release/kokoro/linux/node_4_arm_glibc.cfg deleted file mode 100644 index 82872df3..00000000 --- a/tools/release/kokoro/linux/node_4_arm_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm" -} -env_vars { - key: "VERSION" - value: "4.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_4_ia32_glibc.cfg b/tools/release/kokoro/linux/node_4_ia32_glibc.cfg deleted file mode 100644 index 68581776..00000000 --- a/tools/release/kokoro/linux/node_4_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "4.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_4_s390x_glibc.cfg b/tools/release/kokoro/linux/node_4_s390x_glibc.cfg deleted file mode 100644 index d599f9e7..00000000 --- a/tools/release/kokoro/linux/node_4_s390x_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "s390x" -} -env_vars { - key: "VERSION" - value: "4.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_4_x64_glibc.cfg b/tools/release/kokoro/linux/node_4_x64_glibc.cfg deleted file mode 100644 index 5184495d..00000000 --- a/tools/release/kokoro/linux/node_4_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "4.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_4_x64_musl.cfg b/tools/release/kokoro/linux/node_4_x64_musl.cfg deleted file mode 100644 index 5184495d..00000000 --- a/tools/release/kokoro/linux/node_4_x64_musl.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "4.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_5_arm64_glibc.cfg b/tools/release/kokoro/linux/node_5_arm64_glibc.cfg deleted file mode 100644 index f022ddce..00000000 --- a/tools/release/kokoro/linux/node_5_arm64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm64" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_5_arm_glibc.cfg b/tools/release/kokoro/linux/node_5_arm_glibc.cfg deleted file mode 100644 index 3c317ff4..00000000 --- a/tools/release/kokoro/linux/node_5_arm_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_5_ia32_glibc.cfg b/tools/release/kokoro/linux/node_5_ia32_glibc.cfg deleted file mode 100644 index e38c38d7..00000000 --- a/tools/release/kokoro/linux/node_5_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_5_s390x_glibc.cfg b/tools/release/kokoro/linux/node_5_s390x_glibc.cfg deleted file mode 100644 index d1eb5d54..00000000 --- a/tools/release/kokoro/linux/node_5_s390x_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "s390x" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_5_x64_glibc.cfg b/tools/release/kokoro/linux/node_5_x64_glibc.cfg deleted file mode 100644 index 404a4209..00000000 --- a/tools/release/kokoro/linux/node_5_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_5_x64_musl.cfg b/tools/release/kokoro/linux/node_5_x64_musl.cfg deleted file mode 100644 index 404a4209..00000000 --- a/tools/release/kokoro/linux/node_5_x64_musl.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_6_arm64_glibc.cfg b/tools/release/kokoro/linux/node_6_arm64_glibc.cfg deleted file mode 100644 index 133d3687..00000000 --- a/tools/release/kokoro/linux/node_6_arm64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm64" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_6_arm_glibc.cfg b/tools/release/kokoro/linux/node_6_arm_glibc.cfg deleted file mode 100644 index 17f32328..00000000 --- a/tools/release/kokoro/linux/node_6_arm_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_6_ia32_glibc.cfg b/tools/release/kokoro/linux/node_6_ia32_glibc.cfg deleted file mode 100644 index 350b3702..00000000 --- a/tools/release/kokoro/linux/node_6_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_6_s390x_glibc.cfg b/tools/release/kokoro/linux/node_6_s390x_glibc.cfg deleted file mode 100644 index 279957e1..00000000 --- a/tools/release/kokoro/linux/node_6_s390x_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "s390x" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_6_x64_glibc.cfg b/tools/release/kokoro/linux/node_6_x64_glibc.cfg deleted file mode 100644 index 6c8d465b..00000000 --- a/tools/release/kokoro/linux/node_6_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_6_x64_musl.cfg b/tools/release/kokoro/linux/node_6_x64_musl.cfg deleted file mode 100644 index 6c8d465b..00000000 --- a/tools/release/kokoro/linux/node_6_x64_musl.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_7_arm64_glibc.cfg b/tools/release/kokoro/linux/node_7_arm64_glibc.cfg deleted file mode 100644 index 0862b142..00000000 --- a/tools/release/kokoro/linux/node_7_arm64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm64" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_7_arm_glibc.cfg b/tools/release/kokoro/linux/node_7_arm_glibc.cfg deleted file mode 100644 index 41ded163..00000000 --- a/tools/release/kokoro/linux/node_7_arm_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_7_ia32_glibc.cfg b/tools/release/kokoro/linux/node_7_ia32_glibc.cfg deleted file mode 100644 index 33e2a04b..00000000 --- a/tools/release/kokoro/linux/node_7_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_7_s390x_glibc.cfg b/tools/release/kokoro/linux/node_7_s390x_glibc.cfg deleted file mode 100644 index 3e976353..00000000 --- a/tools/release/kokoro/linux/node_7_s390x_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "s390x" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_7_x64_glibc.cfg b/tools/release/kokoro/linux/node_7_x64_glibc.cfg deleted file mode 100644 index 6f690f1b..00000000 --- a/tools/release/kokoro/linux/node_7_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_7_x64_musl.cfg b/tools/release/kokoro/linux/node_7_x64_musl.cfg deleted file mode 100644 index 6f690f1b..00000000 --- a/tools/release/kokoro/linux/node_7_x64_musl.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_8_arm64_glibc.cfg b/tools/release/kokoro/linux/node_8_arm64_glibc.cfg deleted file mode 100644 index fba0f0f6..00000000 --- a/tools/release/kokoro/linux/node_8_arm64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm64" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_8_arm_glibc.cfg b/tools/release/kokoro/linux/node_8_arm_glibc.cfg deleted file mode 100644 index 017efbc4..00000000 --- a/tools/release/kokoro/linux/node_8_arm_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_8_ia32_glibc.cfg b/tools/release/kokoro/linux/node_8_ia32_glibc.cfg deleted file mode 100644 index 87b02ff5..00000000 --- a/tools/release/kokoro/linux/node_8_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_8_s390x_glibc.cfg b/tools/release/kokoro/linux/node_8_s390x_glibc.cfg deleted file mode 100644 index f4e8183a..00000000 --- a/tools/release/kokoro/linux/node_8_s390x_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "s390x" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_8_x64_glibc.cfg b/tools/release/kokoro/linux/node_8_x64_glibc.cfg deleted file mode 100644 index d0d2396e..00000000 --- a/tools/release/kokoro/linux/node_8_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_8_x64_musl.cfg b/tools/release/kokoro/linux/node_8_x64_musl.cfg deleted file mode 100644 index d0d2396e..00000000 --- a/tools/release/kokoro/linux/node_8_x64_musl.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_9_arm64_glibc.cfg b/tools/release/kokoro/linux/node_9_arm64_glibc.cfg deleted file mode 100644 index b2f26d89..00000000 --- a/tools/release/kokoro/linux/node_9_arm64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm64" -} -env_vars { - key: "VERSION" - value: "9.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_9_arm_glibc.cfg b/tools/release/kokoro/linux/node_9_arm_glibc.cfg deleted file mode 100644 index 051f833f..00000000 --- a/tools/release/kokoro/linux/node_9_arm_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "arm" -} -env_vars { - key: "VERSION" - value: "9.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_9_ia32_glibc.cfg b/tools/release/kokoro/linux/node_9_ia32_glibc.cfg deleted file mode 100644 index 0e1f41d8..00000000 --- a/tools/release/kokoro/linux/node_9_ia32_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "9.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_9_s390x_glibc.cfg b/tools/release/kokoro/linux/node_9_s390x_glibc.cfg deleted file mode 100644 index fce87952..00000000 --- a/tools/release/kokoro/linux/node_9_s390x_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "s390x" -} -env_vars { - key: "VERSION" - value: "9.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_9_x64_glibc.cfg b/tools/release/kokoro/linux/node_9_x64_glibc.cfg deleted file mode 100644 index fc88e10f..00000000 --- a/tools/release/kokoro/linux/node_9_x64_glibc.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "9.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/linux/node_9_x64_musl.cfg b/tools/release/kokoro/linux/node_9_x64_musl.cfg deleted file mode 100644 index fc88e10f..00000000 --- a/tools/release/kokoro/linux/node_9_x64_musl.cfg +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_linux.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "9.0.0" -} -env_vars { - key: "LIBC" - value: "glibc" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos-electron.cfg b/tools/release/kokoro/macos-electron.cfg deleted file mode 100644 index b0e835b8..00000000 --- a/tools/release/kokoro/macos-electron.cfg +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2018 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -# Location of the continuous shell script in repository. -build_file: "grpc-node/tools/release/kokoro-electron.sh" -timeout_mins: 120 -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos-nodejs.cfg b/tools/release/kokoro/macos-nodejs.cfg deleted file mode 100644 index 7a313cb8..00000000 --- a/tools/release/kokoro/macos-nodejs.cfg +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2018 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -# Location of the continuous shell script in repository. -build_file: "grpc-node/tools/release/kokoro-nodejs.sh" -timeout_mins: 120 -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.0_ia32.cfg b/tools/release/kokoro/macos/electron_1.0_ia32.cfg deleted file mode 100644 index c14493f1..00000000 --- a/tools/release/kokoro/macos/electron_1.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.0_x64.cfg b/tools/release/kokoro/macos/electron_1.0_x64.cfg deleted file mode 100644 index de01b329..00000000 --- a/tools/release/kokoro/macos/electron_1.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.1_ia32.cfg b/tools/release/kokoro/macos/electron_1.1_ia32.cfg deleted file mode 100644 index 71c370c4..00000000 --- a/tools/release/kokoro/macos/electron_1.1_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.1_x64.cfg b/tools/release/kokoro/macos/electron_1.1_x64.cfg deleted file mode 100644 index 10f9a525..00000000 --- a/tools/release/kokoro/macos/electron_1.1_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.2_ia32.cfg b/tools/release/kokoro/macos/electron_1.2_ia32.cfg deleted file mode 100644 index 3c2136b7..00000000 --- a/tools/release/kokoro/macos/electron_1.2_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.2.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.2_x64.cfg b/tools/release/kokoro/macos/electron_1.2_x64.cfg deleted file mode 100644 index 06f2ce56..00000000 --- a/tools/release/kokoro/macos/electron_1.2_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.2.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.3_ia32.cfg b/tools/release/kokoro/macos/electron_1.3_ia32.cfg deleted file mode 100644 index cdaace0d..00000000 --- a/tools/release/kokoro/macos/electron_1.3_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.3.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.3_x64.cfg b/tools/release/kokoro/macos/electron_1.3_x64.cfg deleted file mode 100644 index 59241ec3..00000000 --- a/tools/release/kokoro/macos/electron_1.3_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.3.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.4_ia32.cfg b/tools/release/kokoro/macos/electron_1.4_ia32.cfg deleted file mode 100644 index f4359b6c..00000000 --- a/tools/release/kokoro/macos/electron_1.4_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.4.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.4_x64.cfg b/tools/release/kokoro/macos/electron_1.4_x64.cfg deleted file mode 100644 index eadc22a2..00000000 --- a/tools/release/kokoro/macos/electron_1.4_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.4.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.5_ia32.cfg b/tools/release/kokoro/macos/electron_1.5_ia32.cfg deleted file mode 100644 index e70c18c0..00000000 --- a/tools/release/kokoro/macos/electron_1.5_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.5.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.5_x64.cfg b/tools/release/kokoro/macos/electron_1.5_x64.cfg deleted file mode 100644 index d2382a17..00000000 --- a/tools/release/kokoro/macos/electron_1.5_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.5.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.6_ia32.cfg b/tools/release/kokoro/macos/electron_1.6_ia32.cfg deleted file mode 100644 index f074428f..00000000 --- a/tools/release/kokoro/macos/electron_1.6_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.6.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.6_x64.cfg b/tools/release/kokoro/macos/electron_1.6_x64.cfg deleted file mode 100644 index 0c93e0d7..00000000 --- a/tools/release/kokoro/macos/electron_1.6_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.6.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.7_ia32.cfg b/tools/release/kokoro/macos/electron_1.7_ia32.cfg deleted file mode 100644 index 48d53103..00000000 --- a/tools/release/kokoro/macos/electron_1.7_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.7.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.7_x64.cfg b/tools/release/kokoro/macos/electron_1.7_x64.cfg deleted file mode 100644 index bdef8d3f..00000000 --- a/tools/release/kokoro/macos/electron_1.7_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.7.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.8_ia32.cfg b/tools/release/kokoro/macos/electron_1.8_ia32.cfg deleted file mode 100644 index a0455a72..00000000 --- a/tools/release/kokoro/macos/electron_1.8_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.8.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_1.8_x64.cfg b/tools/release/kokoro/macos/electron_1.8_x64.cfg deleted file mode 100644 index 94b3a0cf..00000000 --- a/tools/release/kokoro/macos/electron_1.8_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.8.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_2.0_ia32.cfg b/tools/release/kokoro/macos/electron_2.0_ia32.cfg deleted file mode 100644 index 137d8ec2..00000000 --- a/tools/release/kokoro/macos/electron_2.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "2.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_2.0_x64.cfg b/tools/release/kokoro/macos/electron_2.0_x64.cfg deleted file mode 100644 index f70f742e..00000000 --- a/tools/release/kokoro/macos/electron_2.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "2.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_3.0_ia32.cfg b/tools/release/kokoro/macos/electron_3.0_ia32.cfg deleted file mode 100644 index eee4f303..00000000 --- a/tools/release/kokoro/macos/electron_3.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "3.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_3.0_x64.cfg b/tools/release/kokoro/macos/electron_3.0_x64.cfg deleted file mode 100644 index 52df13a8..00000000 --- a/tools/release/kokoro/macos/electron_3.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "3.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_3.1_ia32.cfg b/tools/release/kokoro/macos/electron_3.1_ia32.cfg deleted file mode 100644 index 12785e3b..00000000 --- a/tools/release/kokoro/macos/electron_3.1_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "3.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_3.1_x64.cfg b/tools/release/kokoro/macos/electron_3.1_x64.cfg deleted file mode 100644 index 02d1a8d3..00000000 --- a/tools/release/kokoro/macos/electron_3.1_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "3.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_4.1_ia32.cfg b/tools/release/kokoro/macos/electron_4.1_ia32.cfg deleted file mode 100644 index 33cf881e..00000000 --- a/tools/release/kokoro/macos/electron_4.1_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "4.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_4.1_x64.cfg b/tools/release/kokoro/macos/electron_4.1_x64.cfg deleted file mode 100644 index 5553bce7..00000000 --- a/tools/release/kokoro/macos/electron_4.1_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "4.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_4.2_ia32.cfg b/tools/release/kokoro/macos/electron_4.2_ia32.cfg deleted file mode 100644 index 41746c21..00000000 --- a/tools/release/kokoro/macos/electron_4.2_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "4.2.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_4.2_x64.cfg b/tools/release/kokoro/macos/electron_4.2_x64.cfg deleted file mode 100644 index b6cf5a70..00000000 --- a/tools/release/kokoro/macos/electron_4.2_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "4.2.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_5.0_ia32.cfg b/tools/release/kokoro/macos/electron_5.0_ia32.cfg deleted file mode 100644 index e59cf6a6..00000000 --- a/tools/release/kokoro/macos/electron_5.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_5.0_x64.cfg b/tools/release/kokoro/macos/electron_5.0_x64.cfg deleted file mode 100644 index 47de1345..00000000 --- a/tools/release/kokoro/macos/electron_5.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_6.0_ia32.cfg b/tools/release/kokoro/macos/electron_6.0_ia32.cfg deleted file mode 100644 index 10ca9f5e..00000000 --- a/tools/release/kokoro/macos/electron_6.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_6.0_x64.cfg b/tools/release/kokoro/macos/electron_6.0_x64.cfg deleted file mode 100644 index 312c27d9..00000000 --- a/tools/release/kokoro/macos/electron_6.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_6.1_ia32.cfg b/tools/release/kokoro/macos/electron_6.1_ia32.cfg deleted file mode 100644 index 45ed07c5..00000000 --- a/tools/release/kokoro/macos/electron_6.1_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "6.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_6.1_x64.cfg b/tools/release/kokoro/macos/electron_6.1_x64.cfg deleted file mode 100644 index e5167655..00000000 --- a/tools/release/kokoro/macos/electron_6.1_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "6.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_7.0_ia32.cfg b/tools/release/kokoro/macos/electron_7.0_ia32.cfg deleted file mode 100644 index 5824649e..00000000 --- a/tools/release/kokoro/macos/electron_7.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_7.0_x64.cfg b/tools/release/kokoro/macos/electron_7.0_x64.cfg deleted file mode 100644 index 38688281..00000000 --- a/tools/release/kokoro/macos/electron_7.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_7.1_ia32.cfg b/tools/release/kokoro/macos/electron_7.1_ia32.cfg deleted file mode 100644 index 4a81c57e..00000000 --- a/tools/release/kokoro/macos/electron_7.1_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "7.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_7.1_x64.cfg b/tools/release/kokoro/macos/electron_7.1_x64.cfg deleted file mode 100644 index a8671b17..00000000 --- a/tools/release/kokoro/macos/electron_7.1_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "7.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_8.0_ia32.cfg b/tools/release/kokoro/macos/electron_8.0_ia32.cfg deleted file mode 100644 index 01b9e92f..00000000 --- a/tools/release/kokoro/macos/electron_8.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/electron_8.0_x64.cfg b/tools/release/kokoro/macos/electron_8.0_x64.cfg deleted file mode 100644 index dec384ed..00000000 --- a/tools/release/kokoro/macos/electron_8.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_10_ia32.cfg b/tools/release/kokoro/macos/node_10_ia32.cfg deleted file mode 100644 index fd1102df..00000000 --- a/tools/release/kokoro/macos/node_10_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "10.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_10_x64.cfg b/tools/release/kokoro/macos/node_10_x64.cfg deleted file mode 100644 index ca306e12..00000000 --- a/tools/release/kokoro/macos/node_10_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "10.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_11_ia32.cfg b/tools/release/kokoro/macos/node_11_ia32.cfg deleted file mode 100644 index ecd4f3d0..00000000 --- a/tools/release/kokoro/macos/node_11_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "11.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_11_x64.cfg b/tools/release/kokoro/macos/node_11_x64.cfg deleted file mode 100644 index 80542311..00000000 --- a/tools/release/kokoro/macos/node_11_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "11.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_12_ia32.cfg b/tools/release/kokoro/macos/node_12_ia32.cfg deleted file mode 100644 index 7bf3a9a3..00000000 --- a/tools/release/kokoro/macos/node_12_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "12.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_12_x64.cfg b/tools/release/kokoro/macos/node_12_x64.cfg deleted file mode 100644 index a4d7c8d0..00000000 --- a/tools/release/kokoro/macos/node_12_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "12.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_13_ia32.cfg b/tools/release/kokoro/macos/node_13_ia32.cfg deleted file mode 100644 index 7fe3a4ea..00000000 --- a/tools/release/kokoro/macos/node_13_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "13.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_13_x64.cfg b/tools/release/kokoro/macos/node_13_x64.cfg deleted file mode 100644 index 156eb6cf..00000000 --- a/tools/release/kokoro/macos/node_13_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "13.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_4_ia32.cfg b/tools/release/kokoro/macos/node_4_ia32.cfg deleted file mode 100644 index 1411ea92..00000000 --- a/tools/release/kokoro/macos/node_4_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "4.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_4_x64.cfg b/tools/release/kokoro/macos/node_4_x64.cfg deleted file mode 100644 index 8a330ce5..00000000 --- a/tools/release/kokoro/macos/node_4_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "4.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_5_ia32.cfg b/tools/release/kokoro/macos/node_5_ia32.cfg deleted file mode 100644 index f99f3b69..00000000 --- a/tools/release/kokoro/macos/node_5_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_5_x64.cfg b/tools/release/kokoro/macos/node_5_x64.cfg deleted file mode 100644 index f1436c2f..00000000 --- a/tools/release/kokoro/macos/node_5_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_6_ia32.cfg b/tools/release/kokoro/macos/node_6_ia32.cfg deleted file mode 100644 index 2381480d..00000000 --- a/tools/release/kokoro/macos/node_6_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_6_x64.cfg b/tools/release/kokoro/macos/node_6_x64.cfg deleted file mode 100644 index 10b657ee..00000000 --- a/tools/release/kokoro/macos/node_6_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_7_ia32.cfg b/tools/release/kokoro/macos/node_7_ia32.cfg deleted file mode 100644 index 9841a4a2..00000000 --- a/tools/release/kokoro/macos/node_7_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_7_x64.cfg b/tools/release/kokoro/macos/node_7_x64.cfg deleted file mode 100644 index a46516bb..00000000 --- a/tools/release/kokoro/macos/node_7_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_8_ia32.cfg b/tools/release/kokoro/macos/node_8_ia32.cfg deleted file mode 100644 index 4c6f268c..00000000 --- a/tools/release/kokoro/macos/node_8_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_8_x64.cfg b/tools/release/kokoro/macos/node_8_x64.cfg deleted file mode 100644 index 2034ac8d..00000000 --- a/tools/release/kokoro/macos/node_8_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_9_ia32.cfg b/tools/release/kokoro/macos/node_9_ia32.cfg deleted file mode 100644 index f51cf728..00000000 --- a/tools/release/kokoro/macos/node_9_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "9.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/macos/node_9_x64.cfg b/tools/release/kokoro/macos/node_9_x64.cfg deleted file mode 100644 index 083e1ee8..00000000 --- a/tools/release/kokoro/macos/node_9_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact_macos.sh" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "9.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows-electron.cfg b/tools/release/kokoro/windows-electron.cfg deleted file mode 100644 index 14a94b64..00000000 --- a/tools/release/kokoro/windows-electron.cfg +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2018 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -# Location of the continuous shell script in repository. -build_file: "grpc-node/tools/release/kokoro-electron.bat" -timeout_mins: 120 -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows-nodejs.cfg b/tools/release/kokoro/windows-nodejs.cfg deleted file mode 100644 index f9307d6d..00000000 --- a/tools/release/kokoro/windows-nodejs.cfg +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2018 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -# Location of the continuous shell script in repository. -build_file: "grpc-node/tools/release/kokoro-nodejs.bat" -timeout_mins: 120 -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.0_ia32.cfg b/tools/release/kokoro/windows/electron_1.0_ia32.cfg deleted file mode 100644 index 599cf099..00000000 --- a/tools/release/kokoro/windows/electron_1.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.0_x64.cfg b/tools/release/kokoro/windows/electron_1.0_x64.cfg deleted file mode 100644 index eb5e743c..00000000 --- a/tools/release/kokoro/windows/electron_1.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.1_ia32.cfg b/tools/release/kokoro/windows/electron_1.1_ia32.cfg deleted file mode 100644 index 61f22bc6..00000000 --- a/tools/release/kokoro/windows/electron_1.1_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.1_x64.cfg b/tools/release/kokoro/windows/electron_1.1_x64.cfg deleted file mode 100644 index 3d084c48..00000000 --- a/tools/release/kokoro/windows/electron_1.1_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.2_ia32.cfg b/tools/release/kokoro/windows/electron_1.2_ia32.cfg deleted file mode 100644 index cc0ceee1..00000000 --- a/tools/release/kokoro/windows/electron_1.2_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.2.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.2_x64.cfg b/tools/release/kokoro/windows/electron_1.2_x64.cfg deleted file mode 100644 index 15a3d4fc..00000000 --- a/tools/release/kokoro/windows/electron_1.2_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.2.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.3_ia32.cfg b/tools/release/kokoro/windows/electron_1.3_ia32.cfg deleted file mode 100644 index 07588569..00000000 --- a/tools/release/kokoro/windows/electron_1.3_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.3.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.3_x64.cfg b/tools/release/kokoro/windows/electron_1.3_x64.cfg deleted file mode 100644 index 0d3c2815..00000000 --- a/tools/release/kokoro/windows/electron_1.3_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.3.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.4_ia32.cfg b/tools/release/kokoro/windows/electron_1.4_ia32.cfg deleted file mode 100644 index 3e9c6847..00000000 --- a/tools/release/kokoro/windows/electron_1.4_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.4.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.4_x64.cfg b/tools/release/kokoro/windows/electron_1.4_x64.cfg deleted file mode 100644 index fd0bea93..00000000 --- a/tools/release/kokoro/windows/electron_1.4_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.4.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.5_ia32.cfg b/tools/release/kokoro/windows/electron_1.5_ia32.cfg deleted file mode 100644 index a30d9a75..00000000 --- a/tools/release/kokoro/windows/electron_1.5_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.5.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.5_x64.cfg b/tools/release/kokoro/windows/electron_1.5_x64.cfg deleted file mode 100644 index 00e9ccb5..00000000 --- a/tools/release/kokoro/windows/electron_1.5_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.5.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.6_ia32.cfg b/tools/release/kokoro/windows/electron_1.6_ia32.cfg deleted file mode 100644 index ed6344b8..00000000 --- a/tools/release/kokoro/windows/electron_1.6_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.6.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.6_x64.cfg b/tools/release/kokoro/windows/electron_1.6_x64.cfg deleted file mode 100644 index 846a2889..00000000 --- a/tools/release/kokoro/windows/electron_1.6_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.6.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.7_ia32.cfg b/tools/release/kokoro/windows/electron_1.7_ia32.cfg deleted file mode 100644 index e90dfeee..00000000 --- a/tools/release/kokoro/windows/electron_1.7_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.7.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.7_x64.cfg b/tools/release/kokoro/windows/electron_1.7_x64.cfg deleted file mode 100644 index 417b1bcc..00000000 --- a/tools/release/kokoro/windows/electron_1.7_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.7.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.8_ia32.cfg b/tools/release/kokoro/windows/electron_1.8_ia32.cfg deleted file mode 100644 index ff51b7ab..00000000 --- a/tools/release/kokoro/windows/electron_1.8_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "1.8.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_1.8_x64.cfg b/tools/release/kokoro/windows/electron_1.8_x64.cfg deleted file mode 100644 index 1675c9f0..00000000 --- a/tools/release/kokoro/windows/electron_1.8_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "1.8.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_2.0_ia32.cfg b/tools/release/kokoro/windows/electron_2.0_ia32.cfg deleted file mode 100644 index 145f2cf9..00000000 --- a/tools/release/kokoro/windows/electron_2.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "2.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_2.0_x64.cfg b/tools/release/kokoro/windows/electron_2.0_x64.cfg deleted file mode 100644 index 0005d14f..00000000 --- a/tools/release/kokoro/windows/electron_2.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "2.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_3.0_ia32.cfg b/tools/release/kokoro/windows/electron_3.0_ia32.cfg deleted file mode 100644 index f4a19371..00000000 --- a/tools/release/kokoro/windows/electron_3.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "3.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_3.0_x64.cfg b/tools/release/kokoro/windows/electron_3.0_x64.cfg deleted file mode 100644 index cb2c38be..00000000 --- a/tools/release/kokoro/windows/electron_3.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "3.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_3.1_ia32.cfg b/tools/release/kokoro/windows/electron_3.1_ia32.cfg deleted file mode 100644 index 92d4ec6d..00000000 --- a/tools/release/kokoro/windows/electron_3.1_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "3.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_3.1_x64.cfg b/tools/release/kokoro/windows/electron_3.1_x64.cfg deleted file mode 100644 index 5989e7aa..00000000 --- a/tools/release/kokoro/windows/electron_3.1_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "3.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_4.1_ia32.cfg b/tools/release/kokoro/windows/electron_4.1_ia32.cfg deleted file mode 100644 index 67eb4183..00000000 --- a/tools/release/kokoro/windows/electron_4.1_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "4.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_4.1_x64.cfg b/tools/release/kokoro/windows/electron_4.1_x64.cfg deleted file mode 100644 index 70b52b12..00000000 --- a/tools/release/kokoro/windows/electron_4.1_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "4.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_4.2_ia32.cfg b/tools/release/kokoro/windows/electron_4.2_ia32.cfg deleted file mode 100644 index f447ed31..00000000 --- a/tools/release/kokoro/windows/electron_4.2_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "4.2.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_4.2_x64.cfg b/tools/release/kokoro/windows/electron_4.2_x64.cfg deleted file mode 100644 index a29112fe..00000000 --- a/tools/release/kokoro/windows/electron_4.2_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "4.2.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_5.0_ia32.cfg b/tools/release/kokoro/windows/electron_5.0_ia32.cfg deleted file mode 100644 index 991bdec8..00000000 --- a/tools/release/kokoro/windows/electron_5.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_5.0_x64.cfg b/tools/release/kokoro/windows/electron_5.0_x64.cfg deleted file mode 100644 index 3b785702..00000000 --- a/tools/release/kokoro/windows/electron_5.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_6.0_ia32.cfg b/tools/release/kokoro/windows/electron_6.0_ia32.cfg deleted file mode 100644 index f944e790..00000000 --- a/tools/release/kokoro/windows/electron_6.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_6.0_x64.cfg b/tools/release/kokoro/windows/electron_6.0_x64.cfg deleted file mode 100644 index 5dda672d..00000000 --- a/tools/release/kokoro/windows/electron_6.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_6.1_ia32.cfg b/tools/release/kokoro/windows/electron_6.1_ia32.cfg deleted file mode 100644 index b202263a..00000000 --- a/tools/release/kokoro/windows/electron_6.1_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "6.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_6.1_x64.cfg b/tools/release/kokoro/windows/electron_6.1_x64.cfg deleted file mode 100644 index 2352deef..00000000 --- a/tools/release/kokoro/windows/electron_6.1_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "6.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_7.0_ia32.cfg b/tools/release/kokoro/windows/electron_7.0_ia32.cfg deleted file mode 100644 index e7c9d1ff..00000000 --- a/tools/release/kokoro/windows/electron_7.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_7.0_x64.cfg b/tools/release/kokoro/windows/electron_7.0_x64.cfg deleted file mode 100644 index 838143f2..00000000 --- a/tools/release/kokoro/windows/electron_7.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_7.1_ia32.cfg b/tools/release/kokoro/windows/electron_7.1_ia32.cfg deleted file mode 100644 index bda7d339..00000000 --- a/tools/release/kokoro/windows/electron_7.1_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "7.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_7.1_x64.cfg b/tools/release/kokoro/windows/electron_7.1_x64.cfg deleted file mode 100644 index 008cac96..00000000 --- a/tools/release/kokoro/windows/electron_7.1_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "7.1.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_8.0_ia32.cfg b/tools/release/kokoro/windows/electron_8.0_ia32.cfg deleted file mode 100644 index ca01fd57..00000000 --- a/tools/release/kokoro/windows/electron_8.0_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/electron_8.0_x64.cfg b/tools/release/kokoro/windows/electron_8.0_x64.cfg deleted file mode 100644 index 988322a4..00000000 --- a/tools/release/kokoro/windows/electron_8.0_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "electron" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_10_ia32.cfg b/tools/release/kokoro/windows/node_10_ia32.cfg deleted file mode 100644 index 5a2d283c..00000000 --- a/tools/release/kokoro/windows/node_10_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "10.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_10_x64.cfg b/tools/release/kokoro/windows/node_10_x64.cfg deleted file mode 100644 index c92671de..00000000 --- a/tools/release/kokoro/windows/node_10_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "10.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_11_ia32.cfg b/tools/release/kokoro/windows/node_11_ia32.cfg deleted file mode 100644 index 507c11cc..00000000 --- a/tools/release/kokoro/windows/node_11_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "11.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_11_x64.cfg b/tools/release/kokoro/windows/node_11_x64.cfg deleted file mode 100644 index ec92fe99..00000000 --- a/tools/release/kokoro/windows/node_11_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "11.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_12_ia32.cfg b/tools/release/kokoro/windows/node_12_ia32.cfg deleted file mode 100644 index d9f1988a..00000000 --- a/tools/release/kokoro/windows/node_12_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "12.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_12_x64.cfg b/tools/release/kokoro/windows/node_12_x64.cfg deleted file mode 100644 index a2d7c70c..00000000 --- a/tools/release/kokoro/windows/node_12_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "12.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_13_ia32.cfg b/tools/release/kokoro/windows/node_13_ia32.cfg deleted file mode 100644 index 521893bd..00000000 --- a/tools/release/kokoro/windows/node_13_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "13.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_13_x64.cfg b/tools/release/kokoro/windows/node_13_x64.cfg deleted file mode 100644 index ae937cc7..00000000 --- a/tools/release/kokoro/windows/node_13_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "13.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_4_ia32.cfg b/tools/release/kokoro/windows/node_4_ia32.cfg deleted file mode 100644 index 88c163c2..00000000 --- a/tools/release/kokoro/windows/node_4_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "4.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_4_x64.cfg b/tools/release/kokoro/windows/node_4_x64.cfg deleted file mode 100644 index 66092f44..00000000 --- a/tools/release/kokoro/windows/node_4_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "4.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_5_ia32.cfg b/tools/release/kokoro/windows/node_5_ia32.cfg deleted file mode 100644 index a883e424..00000000 --- a/tools/release/kokoro/windows/node_5_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_5_x64.cfg b/tools/release/kokoro/windows/node_5_x64.cfg deleted file mode 100644 index 33099355..00000000 --- a/tools/release/kokoro/windows/node_5_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "5.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_6_ia32.cfg b/tools/release/kokoro/windows/node_6_ia32.cfg deleted file mode 100644 index 65111903..00000000 --- a/tools/release/kokoro/windows/node_6_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_6_x64.cfg b/tools/release/kokoro/windows/node_6_x64.cfg deleted file mode 100644 index bd50810c..00000000 --- a/tools/release/kokoro/windows/node_6_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "6.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_7_ia32.cfg b/tools/release/kokoro/windows/node_7_ia32.cfg deleted file mode 100644 index a0900e93..00000000 --- a/tools/release/kokoro/windows/node_7_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_7_x64.cfg b/tools/release/kokoro/windows/node_7_x64.cfg deleted file mode 100644 index 8483b843..00000000 --- a/tools/release/kokoro/windows/node_7_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "7.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_8_ia32.cfg b/tools/release/kokoro/windows/node_8_ia32.cfg deleted file mode 100644 index 59febe3b..00000000 --- a/tools/release/kokoro/windows/node_8_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_8_x64.cfg b/tools/release/kokoro/windows/node_8_x64.cfg deleted file mode 100644 index bf0da19d..00000000 --- a/tools/release/kokoro/windows/node_8_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "8.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_9_ia32.cfg b/tools/release/kokoro/windows/node_9_ia32.cfg deleted file mode 100644 index bb419d8c..00000000 --- a/tools/release/kokoro/windows/node_9_ia32.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "ia32" -} -env_vars { - key: "VERSION" - value: "9.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -} diff --git a/tools/release/kokoro/windows/node_9_x64.cfg b/tools/release/kokoro/windows/node_9_x64.cfg deleted file mode 100644 index 8380f431..00000000 --- a/tools/release/kokoro/windows/node_9_x64.cfg +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2020 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Config file for Kokoro (in protobuf text format) - -build_file: "grpc-node/packages/grpc-native-core/tools/run_tests/artifacts/build_one_artifact.bat" -env_vars { - key: "RUNTIME" - value: "node" -} -env_vars { - key: "ARCH" - value: "x64" -} -env_vars { - key: "VERSION" - value: "9.0.0" -} -action { - define_artifacts { - regex: "github/grpc-node/artifacts/**", - strip_prefix: "github/grpc-node/artifacts" - } -}