Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6706678

Browse files
authored
Merge pull request#1004 from googleapis/sync-v3
chore: sync v3 with main
2 parents71dde11 +c67377a commit6706678

File tree

55 files changed

+1322
-174
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1322
-174
lines changed

‎.github/.OwlBot.lock.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
docker:
22
image:gcr.io/cloud-devrel-public-resources/owlbot-python:latest
3-
digest:sha256:87eee22d276554e4e52863ec9b1cb6a7245815dfae20439712bf644348215a5a
3+
digest:sha256:4ee57a76a176ede9087c14330c625a71553cf9c72828b2c0ca12f5338171ba60

‎.github/sync-repo-settings.yaml‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# https://github.com/googleapis/repo-automation-bots/tree/main/packages/sync-repo-settings
2+
# Allow merge commits to sync main and v3 with fewer conflicts.
3+
mergeCommitAllowed:true
24
# Rules for main branch protection
35
branchProtectionRules:
46
# Identifies the protection rule pattern. Name of the branch to be protected.
57
# Defaults to `main`
68
-pattern:main
9+
requiresLinearHistory:true
710
requiresCodeOwnerReviews:true
811
requiresStrictStatusChecks:true
912
requiredStatusCheckContexts:
@@ -15,6 +18,7 @@ branchProtectionRules:
1518
-'Samples - Python 3.7'
1619
-'Samples - Python 3.8'
1720
-pattern:v3
21+
requiresLinearHistory:false
1822
requiresCodeOwnerReviews:true
1923
requiresStrictStatusChecks:true
2024
requiredStatusCheckContexts:

‎.kokoro/docs/common.cfg‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ env_vars: {
3030

3131
env_vars: {
3232
key:"V2_STAGING_BUCKET"
33+
# Push google cloud library docs to the Cloud RAD bucket `docs-staging-v2`
3334
value:"docs-staging-v2"
3435
}
3536

‎.kokoro/samples/lint/common.cfg‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/python-docs-samples"
3131
gfile_resources:"/bigstore/cloud-devrel-kokoro-resources/trampoline"
3232

3333
# Use the trampoline script to run in docker.
34-
build_file:"python-bigquery/.kokoro/trampoline.sh"
34+
build_file:"python-bigquery/.kokoro/trampoline_v2.sh"
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
# Build logs will be here
4+
action {
5+
define_artifacts {
6+
regex:"**/*sponge_log.xml"
7+
}
8+
}
9+
10+
# Specify which tests to run
11+
env_vars: {
12+
key:"RUN_TESTS_SESSION"
13+
value:"py-3.10"
14+
}
15+
16+
# Declare build specific Cloud project.
17+
env_vars: {
18+
key:"BUILD_SPECIFIC_GCLOUD_PROJECT"
19+
value:"python-docs-samples-tests-310"
20+
}
21+
22+
env_vars: {
23+
key:"TRAMPOLINE_BUILD_FILE"
24+
value:"github/python-bigquery/.kokoro/test-samples.sh"
25+
}
26+
27+
# Configure the docker image for kokoro-trampoline.
28+
env_vars: {
29+
key:"TRAMPOLINE_IMAGE"
30+
value:"gcr.io/cloud-devrel-kokoro-resources/python-samples-testing-docker"
31+
}
32+
33+
# Download secrets for samples
34+
gfile_resources:"/bigstore/cloud-devrel-kokoro-resources/python-docs-samples"
35+
36+
# Download trampoline resources.
37+
gfile_resources:"/bigstore/cloud-devrel-kokoro-resources/trampoline"
38+
39+
# Use the trampoline script to run in docker.
40+
build_file:"python-bigquery/.kokoro/trampoline_v2.sh"
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
env_vars: {
4+
key:"INSTALL_LIBRARY_FROM_SOURCE"
5+
value:"True"
6+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
env_vars: {
4+
key:"INSTALL_LIBRARY_FROM_SOURCE"
5+
value:"True"
6+
}
7+
8+
env_vars: {
9+
key:"TRAMPOLINE_BUILD_FILE"
10+
value:"github/python-bigquery/.kokoro/test-samples-against-head.sh"
11+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
env_vars: {
4+
key:"INSTALL_LIBRARY_FROM_SOURCE"
5+
value:"False"
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
env_vars: {
4+
key:"INSTALL_LIBRARY_FROM_SOURCE"
5+
value:"True"
6+
}

‎.kokoro/samples/python3.6/common.cfg‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/python-docs-samples"
3737
gfile_resources:"/bigstore/cloud-devrel-kokoro-resources/trampoline"
3838

3939
# Use the trampoline script to run in docker.
40-
build_file:"python-bigquery/.kokoro/trampoline.sh"
40+
build_file:"python-bigquery/.kokoro/trampoline_v2.sh"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp