blob: c13fb3a19dfcd19f71e8935cf0795abb5b053b9f [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
Anthonios Partheniouaf918e82020-11-25 19:58:04 -050017
release-please[bot]fd2965c2021-08-11 17:00:21 +000018from synthtool.languages import python
Bu Sun Kimf706cfd2020-04-20 14:05:05 -070019
20common = gcp.CommonTemplates()
21
22# ----------------------------------------------------------------------------
23# Add templated files
24# ----------------------------------------------------------------------------
25templated_files = common.py_library()
26
27# Copy kokoro configs.
28# Docs are excluded as repo docs cannot currently be generated using sphinx.
29s.move(templated_files / '.kokoro', excludes=['**/docs/*', 'publish-docs.sh'])
30
31# Also move issue templates
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070032s.move(templated_files / '.github')
release-please[bot]fd2965c2021-08-11 17:00:21 +000033
34# Move scripts folder needed for samples CI
35s.move(templated_files / 'scripts')
36
37# ----------------------------------------------------------------------------
38# Samples templates
39# ----------------------------------------------------------------------------
40
41python.py_samples(skip_readmes=True)
Anthonios Parthenioue9a5d082021-08-25 12:30:26 -040042
43# Remove the replacements below once https://github.com/googleapis/synthtool/pull/1188 is merged
44
45# Update googleapis/repo-automation-bots repo to main in .kokoro/*.sh files
46s.replace(".kokoro/*.sh", "repo-automation-bots/tree/master", "repo-automation-bots/tree/main")