35 lines
1.2 KiB
TOML
35 lines
1.2 KiB
TOML
# ci-orchestrator config example.
|
|
#
|
|
# Copy to $CI_ROOT/config.toml or set $CI_CONFIG to the file path.
|
|
# Environment variables (CI_ROOT, CI_TEMPLATES, CI_BUILD_VMS, CI_ARTIFACTS,
|
|
# CI_KEYS, CI_VMRUN_PATH, CI_SSH_KEY_PATH, CI_GUEST_CRED_TARGET) override
|
|
# anything set here.
|
|
#
|
|
# IMPORTANT (TOML rule): top-level keys must appear BEFORE any [section] header.
|
|
# Keys placed after a [section] belong to that section, not to the root table.
|
|
|
|
# Top-level orchestrator settings.
|
|
vmrun_path = "C:/Program Files (x86)/VMware/VMware Workstation/vmrun.exe"
|
|
ssh_key_path = "F:/CI/keys/ci_linux"
|
|
guest_cred_target = "BuildVMGuest"
|
|
|
|
# --------------------------------------------------------------- Windows host
|
|
[paths]
|
|
root = "F:/CI"
|
|
templates = "F:/CI/Templates"
|
|
build_vms = "F:/CI/BuildVMs"
|
|
artifacts = "F:/CI/Artifacts"
|
|
keys = "F:/CI/keys"
|
|
|
|
# Phase B (Linux host) — uncomment after migration.
|
|
# [paths]
|
|
# root = "/var/lib/ci"
|
|
# templates = "/var/lib/ci/templates"
|
|
# build_vms = "/var/lib/ci/build-vms"
|
|
# artifacts = "/var/lib/ci/artifacts"
|
|
# keys = "/etc/ci/keys"
|
|
|
|
# Phase C hook: backend selector. Only "workstation" is implemented in Phase A.
|
|
[backend]
|
|
type = "workstation"
|