From 3f0d761788e4ba20df6ced126c80fe604dc2de2e Mon Sep 17 00:00:00 2001 From: Cem Aksoylar Date: Sun, 10 Dec 2023 23:37:19 -0800 Subject: [PATCH] docs: Give examples of using other build.yaml props --- build.yaml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/build.yaml b/build.yaml index 781c2f9..06d5736 100644 --- a/build.yaml +++ b/build.yaml @@ -1,8 +1,9 @@ -# This file generates the GitHub Actions matrix -# For simple board + shield combinations, add them -# to the top level board and shield arrays, for more -# control, add individual board + shield combinations to -# the `include` property, e.g: +# This file generates the GitHub Actions matrix. +# For simple board + shield combinations, add them to the top level board and +# shield arrays, for more control, add individual board + shield combinations +# to the `include` property. You can also use the `cmake-args` property to +# pass flags to the build command and `artifact-name` to assign a name to +# distinguish build outputs from each other: # # board: [ "nice_nano_v2" ] # shield: [ "corne_left", "corne_right" ] @@ -10,5 +11,9 @@ # - board: bdn9_rev2 # - board: nice_nano_v2 # shield: reviung41 +# - board: nice_nano_v2 +# shield: corne_left +# cmake-args: -DKEYMAP_FILE=../../config/alternate.keymap +# artifact-name: corne_alternate_left # ---