-
Notifications
You must be signed in to change notification settings - Fork 66
/
owlbot.py
73 lines (59 loc) · 2.27 KB
/
owlbot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import synthtool as s
from synthtool import gcp
from synthtool.languages import python
AUTOSYNTH_MULTIPLE_PRS = True
common = gcp.CommonTemplates()
# ----------------------------------------------------------------------------
# Add templated files
# ----------------------------------------------------------------------------
templated_files = common.py_library(unit_cov_level=100, cov_level=100)
python.py_samples(skip_readmes=True)
s.move(templated_files / '.kokoro')
s.move(templated_files / '.trampolinerc')
s.move(templated_files / "renovate.json")
s.replace([".kokoro/publish-docs.sh", ".kokoro/build.sh"], "cd github/python-ndb",
"""cd github/python-ndb
# Need enchant for spell check
sudo apt-get update
sudo apt-get -y install dictionaries-common aspell aspell-en \\
hunspell-en-us libenchant1c2a enchant""")
s.replace(".kokoro/build.sh", """(export PROJECT_ID=.*)""", """\g<1>
if [[ -f "${KOKORO_GFILE_DIR}/service-account.json" ]]; then
# Configure local Redis to be used
export REDIS_CACHE_URL=redis://localhost
redis-server &
# Configure local memcached to be used
export MEMCACHED_HOSTS=127.0.0.1
service memcached start
# Some system tests require indexes. Use gcloud to create them.
gcloud auth activate-service-account --key-file=$GOOGLE_APPLICATION_CREDENTIALS --project=$PROJECT_ID
gcloud --quiet --verbosity=debug datastore indexes create tests/system/index.yaml
fi
""")
s.replace(".kokoro/build.sh",
"""# Setup service account credentials.
export GOOGLE_APPLICATION_CREDENTIALS=\$\{KOKORO_GFILE_DIR\}/service-account.json""",
"""if [[ -f "${KOKORO_GFILE_DIR}/service-account.json" ]]; then
# Setup service account credentials.
export GOOGLE_APPLICATION_CREDENTIALS=${KOKORO_GFILE_DIR}/service-account.json
fi"""
)
s.replace(
".kokoro/docker/docs/Dockerfile",
"libsqlite3-dev.*\n",
"\g<0> memcached \\\n"\
)
s.replace(
".kokoro/docker/docs/Dockerfile",
"# Install dependencies.\n",
"""\g<0># Spell check related
RUN apt-get update && apt-get install -y dictionaries-common aspell aspell-en \\
hunspell-en-us libenchant-2-2 enchant-2
"""
)
assert 1 == s.replace(
".kokoro/docs/docs-presubmit.cfg",
'value: "docs docfx"',
'value: "docs"',
)
s.shell.run(["nox", "-s", "blacken"], hide_output=False)