Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
0b2be3ca
Commit
0b2be3ca
authored
Dec 21, 2017
by
Matt Kwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Shard 64-bit Linux languages into different Kokoro jobs
parent
ae49cfd1
Hide whitespace changes
Inline
Side-by-side
Showing
30 changed files
with
390 additions
and
0 deletions
+390
-0
build.sh
kokoro/linux/golang/build.sh
+17
-0
continuous.cfg
kokoro/linux/golang/continuous.cfg
+11
-0
presubmit.cfg
kokoro/linux/golang/presubmit.cfg
+11
-0
build.sh
kokoro/linux/java_jdk7/build.sh
+17
-0
continuous.cfg
kokoro/linux/java_jdk7/continuous.cfg
+11
-0
presubmit.cfg
kokoro/linux/java_jdk7/presubmit.cfg
+11
-0
build.sh
kokoro/linux/java_oracle7/build.sh
+17
-0
continuous.cfg
kokoro/linux/java_oracle7/continuous.cfg
+11
-0
presubmit.cfg
kokoro/linux/java_oracle7/presubmit.cfg
+11
-0
build.sh
kokoro/linux/javanano_jdk7/build.sh
+17
-0
continuous.cfg
kokoro/linux/javanano_jdk7/continuous.cfg
+11
-0
presubmit.cfg
kokoro/linux/javanano_jdk7/presubmit.cfg
+11
-0
build.sh
kokoro/linux/javanano_oracle7/build.sh
+17
-0
continuous.cfg
kokoro/linux/javanano_oracle7/continuous.cfg
+11
-0
presubmit.cfg
kokoro/linux/javanano_oracle7/presubmit.cfg
+11
-0
build.sh
kokoro/linux/javascript/build.sh
+17
-0
continuous.cfg
kokoro/linux/javascript/continuous.cfg
+11
-0
presubmit.cfg
kokoro/linux/javascript/presubmit.cfg
+11
-0
build.sh
kokoro/linux/php_all/build.sh
+17
-0
continuous.cfg
kokoro/linux/php_all/continuous.cfg
+11
-0
presubmit.cfg
kokoro/linux/php_all/presubmit.cfg
+11
-0
build.sh
kokoro/linux/python/build.sh
+17
-0
continuous.cfg
kokoro/linux/python/continuous.cfg
+11
-0
presubmit.cfg
kokoro/linux/python/presubmit.cfg
+11
-0
build.sh
kokoro/linux/python_cpp/build.sh
+17
-0
continuous.cfg
kokoro/linux/python_cpp/continuous.cfg
+11
-0
presubmit.cfg
kokoro/linux/python_cpp/presubmit.cfg
+11
-0
build.sh
kokoro/linux/ruby_all/build.sh
+17
-0
continuous.cfg
kokoro/linux/ruby_all/continuous.cfg
+11
-0
presubmit.cfg
kokoro/linux/ruby_all/presubmit.cfg
+11
-0
No files found.
kokoro/linux/golang/build.sh
0 → 100755
View file @
0b2be3ca
#!/bin/bash
#
# This is the top-level script we give to Kokoro as the entry point for
# running the "pull request" project:
#
# This script selects a specific Dockerfile (for building a Docker image) and
# a script to run inside that image. Then we delegate to the general
# build_and_run_docker.sh script.
# Change to repo root
cd
$(
dirname
$0
)
/../../..
export
DOCKERFILE_DIR
=
kokoro/linux/64-bit
export
DOCKER_RUN_SCRIPT
=
kokoro/linux/pull_request_in_docker.sh
export
OUTPUT_DIR
=
testoutput
export
TEST_SET
=
"golang"
./kokoro/linux/build_and_run_docker.sh
kokoro/linux/golang/continuous.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/golang/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/golang/presubmit.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/golang/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/java_jdk7/build.sh
0 → 100755
View file @
0b2be3ca
#!/bin/bash
#
# This is the top-level script we give to Kokoro as the entry point for
# running the "pull request" project:
#
# This script selects a specific Dockerfile (for building a Docker image) and
# a script to run inside that image. Then we delegate to the general
# build_and_run_docker.sh script.
# Change to repo root
cd
$(
dirname
$0
)
/../../..
export
DOCKERFILE_DIR
=
kokoro/linux/64-bit
export
DOCKER_RUN_SCRIPT
=
kokoro/linux/pull_request_in_docker.sh
export
OUTPUT_DIR
=
testoutput
export
TEST_SET
=
"java_jdk7"
./kokoro/linux/build_and_run_docker.sh
kokoro/linux/java_jdk7/continuous.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/java_jdk7/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/java_jdk7/presubmit.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/java_jdk7/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/java_oracle7/build.sh
0 → 100755
View file @
0b2be3ca
#!/bin/bash
#
# This is the top-level script we give to Kokoro as the entry point for
# running the "pull request" project:
#
# This script selects a specific Dockerfile (for building a Docker image) and
# a script to run inside that image. Then we delegate to the general
# build_and_run_docker.sh script.
# Change to repo root
cd
$(
dirname
$0
)
/../../..
export
DOCKERFILE_DIR
=
kokoro/linux/64-bit
export
DOCKER_RUN_SCRIPT
=
kokoro/linux/pull_request_in_docker.sh
export
OUTPUT_DIR
=
testoutput
export
TEST_SET
=
"java_oracle7"
./kokoro/linux/build_and_run_docker.sh
kokoro/linux/java_oracle7/continuous.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/java_oracle7/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/java_oracle7/presubmit.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/java_oracle7/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/javanano_jdk7/build.sh
0 → 100755
View file @
0b2be3ca
#!/bin/bash
#
# This is the top-level script we give to Kokoro as the entry point for
# running the "pull request" project:
#
# This script selects a specific Dockerfile (for building a Docker image) and
# a script to run inside that image. Then we delegate to the general
# build_and_run_docker.sh script.
# Change to repo root
cd
$(
dirname
$0
)
/../../..
export
DOCKERFILE_DIR
=
kokoro/linux/64-bit
export
DOCKER_RUN_SCRIPT
=
kokoro/linux/pull_request_in_docker.sh
export
OUTPUT_DIR
=
testoutput
export
TEST_SET
=
"javanano_jdk7"
./kokoro/linux/build_and_run_docker.sh
kokoro/linux/javanano_jdk7/continuous.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/javanano_jdk7/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/javanano_jdk7/presubmit.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/javanano_jdk7/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/javanano_oracle7/build.sh
0 → 100755
View file @
0b2be3ca
#!/bin/bash
#
# This is the top-level script we give to Kokoro as the entry point for
# running the "pull request" project:
#
# This script selects a specific Dockerfile (for building a Docker image) and
# a script to run inside that image. Then we delegate to the general
# build_and_run_docker.sh script.
# Change to repo root
cd
$(
dirname
$0
)
/../../..
export
DOCKERFILE_DIR
=
kokoro/linux/64-bit
export
DOCKER_RUN_SCRIPT
=
kokoro/linux/pull_request_in_docker.sh
export
OUTPUT_DIR
=
testoutput
export
TEST_SET
=
"javanano_oracle7"
./kokoro/linux/build_and_run_docker.sh
kokoro/linux/javanano_oracle7/continuous.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/javanano_oracle7/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/javanano_oracle7/presubmit.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/javanano_oracle7/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/javascript/build.sh
0 → 100755
View file @
0b2be3ca
#!/bin/bash
#
# This is the top-level script we give to Kokoro as the entry point for
# running the "pull request" project:
#
# This script selects a specific Dockerfile (for building a Docker image) and
# a script to run inside that image. Then we delegate to the general
# build_and_run_docker.sh script.
# Change to repo root
cd
$(
dirname
$0
)
/../../..
export
DOCKERFILE_DIR
=
kokoro/linux/64-bit
export
DOCKER_RUN_SCRIPT
=
kokoro/linux/pull_request_in_docker.sh
export
OUTPUT_DIR
=
testoutput
export
TEST_SET
=
"javascript"
./kokoro/linux/build_and_run_docker.sh
kokoro/linux/javascript/continuous.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/javascript/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/javascript/presubmit.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/javascript/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/php_all/build.sh
0 → 100755
View file @
0b2be3ca
#!/bin/bash
#
# This is the top-level script we give to Kokoro as the entry point for
# running the "pull request" project:
#
# This script selects a specific Dockerfile (for building a Docker image) and
# a script to run inside that image. Then we delegate to the general
# build_and_run_docker.sh script.
# Change to repo root
cd
$(
dirname
$0
)
/../../..
export
DOCKERFILE_DIR
=
kokoro/linux/64-bit
export
DOCKER_RUN_SCRIPT
=
kokoro/linux/pull_request_in_docker.sh
export
OUTPUT_DIR
=
testoutput
export
TEST_SET
=
"php_all"
./kokoro/linux/build_and_run_docker.sh
kokoro/linux/php_all/continuous.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/php_all/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/php_all/presubmit.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/php_all/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/python/build.sh
0 → 100755
View file @
0b2be3ca
#!/bin/bash
#
# This is the top-level script we give to Kokoro as the entry point for
# running the "pull request" project:
#
# This script selects a specific Dockerfile (for building a Docker image) and
# a script to run inside that image. Then we delegate to the general
# build_and_run_docker.sh script.
# Change to repo root
cd
$(
dirname
$0
)
/../../..
export
DOCKERFILE_DIR
=
kokoro/linux/64-bit
export
DOCKER_RUN_SCRIPT
=
kokoro/linux/pull_request_in_docker.sh
export
OUTPUT_DIR
=
testoutput
export
TEST_SET
=
"python"
./kokoro/linux/build_and_run_docker.sh
kokoro/linux/python/continuous.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/python/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/python/presubmit.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/python/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/python_cpp/build.sh
0 → 100755
View file @
0b2be3ca
#!/bin/bash
#
# This is the top-level script we give to Kokoro as the entry point for
# running the "pull request" project:
#
# This script selects a specific Dockerfile (for building a Docker image) and
# a script to run inside that image. Then we delegate to the general
# build_and_run_docker.sh script.
# Change to repo root
cd
$(
dirname
$0
)
/../../..
export
DOCKERFILE_DIR
=
kokoro/linux/64-bit
export
DOCKER_RUN_SCRIPT
=
kokoro/linux/pull_request_in_docker.sh
export
OUTPUT_DIR
=
testoutput
export
TEST_SET
=
"python_cpp"
./kokoro/linux/build_and_run_docker.sh
kokoro/linux/python_cpp/continuous.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/python_cpp/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/python_cpp/presubmit.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/python_cpp/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/ruby_all/build.sh
0 → 100755
View file @
0b2be3ca
#!/bin/bash
#
# This is the top-level script we give to Kokoro as the entry point for
# running the "pull request" project:
#
# This script selects a specific Dockerfile (for building a Docker image) and
# a script to run inside that image. Then we delegate to the general
# build_and_run_docker.sh script.
# Change to repo root
cd
$(
dirname
$0
)
/../../..
export
DOCKERFILE_DIR
=
kokoro/linux/64-bit
export
DOCKER_RUN_SCRIPT
=
kokoro/linux/pull_request_in_docker.sh
export
OUTPUT_DIR
=
testoutput
export
TEST_SET
=
"ruby_all"
./kokoro/linux/build_and_run_docker.sh
kokoro/linux/ruby_all/continuous.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/ruby_all/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
kokoro/linux/ruby_all/presubmit.cfg
0 → 100644
View file @
0b2be3ca
# Config file for running tests in Kokoro
# Location of the build script in repository
build_file: "protobuf/kokoro/linux/ruby_all/build.sh"
timeout_mins: 120
action {
define_artifacts {
regex: "**/sponge_log.xml"
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment