blob: e68036bbe5feae9337f268d31f4e6959cc753dff [file] [log] [blame]
Bu Sun Kimf706cfd2020-04-20 14:05:05 -07001# Copyright 2020 Google LLC
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15import synthtool as s
16from synthtool import gcp
17
18common = gcp.CommonTemplates()
19
20# ----------------------------------------------------------------------------
21# Add templated files
22# ----------------------------------------------------------------------------
23templated_files = common.py_library()
24
25# Copy kokoro configs.
26# Docs are excluded as repo docs cannot currently be generated using sphinx.
27s.move(templated_files / '.kokoro', excludes=['**/docs/*', 'publish-docs.sh'])
28
29# Also move issue templates
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070030s.move(templated_files / '.github')
31
32s.shell.run(["nox", "-s", "docs"], hide_output=False)