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

Appearance settings

chore: Migrate python-logging synth.py from artman to bazel #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions 12 synth.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,21 @@
import synthtool as s
from synthtool import gcp

gapic = gcp.GAPICGenerator()
gapic = gcp.GAPICBazel()
common = gcp.CommonTemplates()

# ----------------------------------------------------------------------------
# Generate logging GAPIC layer
# ----------------------------------------------------------------------------
library = gapic.py_library(
"logging",
"v2",
config_path="/google/logging/artman_logging.yaml",
artman_output_name="logging-v2",
service="logging",
version="v2",
bazel_target="//google/logging/v2:logging-v2-py",
include_protos=True,
)

# the structure of the logging directory is a bit different, so manually copy the protos
s.move(library / "google/cloud/logging_v2/proto/cloud/logging_v2/proto", "google/cloud/logging_v2/proto")
s.move(library / "google/cloud/logging_v2/proto/*.proto")
s.move(library / "google/cloud/logging_v2/proto", "google/cloud/logging_v2/proto")

s.move(library / "google/cloud/logging_v2/gapic")
s.move(library / "tests/unit/gapic/v2")
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.