mirror of https://github.com/openXC7/prjxray.git
61 lines
1.3 KiB
Python
Executable File
61 lines
1.3 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
db_full = """\
|
|
# Format: //devtools/kokoro/config/proto/build.proto
|
|
|
|
build_file: "symbiflow-prjxray-%(kokoro_type)s-db-%(part)s/.github/kokoro/db-full.sh"
|
|
|
|
timeout_mins: 4320
|
|
|
|
action {
|
|
define_artifacts {
|
|
# File types
|
|
regex: "**/diff.html"
|
|
regex: "**/diff.json"
|
|
regex: "**/diff.patch"
|
|
regex: "**/*result*.xml"
|
|
regex: "**/*sponge_log.xml"
|
|
# Whole directories
|
|
# regex: "**/build/**" - Currently kokoro dies on number of artifacts.
|
|
regex: "**/build/*.log"
|
|
regex: "**/logs/**"
|
|
# The database
|
|
regex: "**/database/%(part)s/**"
|
|
strip_prefix: "github/symbiflow-prjxray-%(kokoro_type)s-db-%(part)s/"
|
|
}
|
|
}
|
|
|
|
env_vars {
|
|
key: "KOKORO_TYPE"
|
|
value: "%(kokoro_type)s"
|
|
}
|
|
|
|
env_vars {
|
|
key: "KOKORO_DIR"
|
|
value: "symbiflow-prjxray-%(kokoro_type)s-db-%(part)s"
|
|
}
|
|
|
|
env_vars {
|
|
key: "XRAY_SETTINGS"
|
|
value: "%(part)s"
|
|
}
|
|
|
|
env_vars {
|
|
key: "XRAY_BUILD_TYPE"
|
|
value: "full"
|
|
}
|
|
"""
|
|
|
|
for part in ['artix7', 'kintex7', 'zynq7']:
|
|
with open("continuous-db-%s.cfg" % part, "w") as f:
|
|
f.write(db_full % {
|
|
'part': part,
|
|
'kokoro_type': 'continuous',
|
|
})
|
|
|
|
with open("presubmit-db-%s.cfg" % part, "w") as f:
|
|
f.write(db_full % {
|
|
'part': part,
|
|
'kokoro_type': 'presubmit',
|
|
})
|