aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Hilman <khilman@baylibre.com>2019-05-29 12:26:26 -0700
committerKevin Hilman <khilman@baylibre.com>2019-05-29 12:26:28 -0700
commit77a8ce4fcd8b26b6ff6c2a76788b5eff1d80ff97 (patch)
tree83d6525750dcac89b1099a16d4224c7d9ce80a7e
parent210ac13eb6657fb4ba75a93c107eb27be5953407 (diff)
templates: fix valid kCI metadata keys
The kernelci-backend is now more strict about enforcing valid and required keys in the metadata. The field `vcs.url` was already a duplicate of `git.url` but now `vcs.url` is no longer considered valid, and using it causes callbacks to be refused by the backend. Fix it by using git.url instead. Change-Id: I768229f3fabc8d127f68f4c33bd6ae22c1f654c4 Signed-off-by: Kevin Hilman <khilman@baylibre.com>
-rw-r--r--templates/base/agl-metadata.jinja22
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base/agl-metadata.jinja2 b/templates/base/agl-metadata.jinja2
index 0c61c3f..1cade7f 100644
--- a/templates/base/agl-metadata.jinja2
+++ b/templates/base/agl-metadata.jinja2
@@ -10,7 +10,7 @@ metadata:
kernel.defconfig: {{ kernel_defconfig }}
platform.mach: {{ device_mach }}
platform.name: {{ device_type }}
- vcs.url: {{ vcs_url }}
+ git.url: {{ vcs_url }}
test.plan: {{ test_plan }}
device.type: {{ device_type }}
job.build_environment: {{ kernel_tree }}