Templating

Template Types

FirmwareCI offers a variety of template groups. These templates are sourced from various origins, such as device-specific information. Each template is identified by a combination of a category identifier and a name identifier, separated by a period (e.g., [[defaults.Binary]]). The name identifier can include characters from a-z, A-Z, underscores (_), and hyphens (-).

Default-Binary

The binary file uploaded by the job can be referenced using defaults.Binary. A common use-case is flashing the Device Under Test (DUT) with the binary.

- cmd: dutctl
   name: Flash the provided binary.
   parameters:
      host: "flasher.lan"
      command: flash
      args: [write, "[[defaults.Binary]]"]

In this example, dutctl is used to flash the binary file referenced by defaults.Binary onto the target device.

Attributes

Attributes of DUTs can be referenced using attributes.name-of-attribute. Common use-cases include addresses of the target device, the flash device, or flags used in testing tools.

Refer to the DUT Configuration for additional information.

- cmd: ping
   name: Wait for SSH service
   options:
      timeout: 2m
   parameters:
      host: "[[attributes.Host]]"

In this example, attributes.Host specifies the target address for the ping command.

Storage

A storage can be referenced via storage.name-of-storage. Common use-cases include individual tools, which are copied onto the Device Under Test (DUT) for testing purposes. If a storage is referenced inside a test, it is available at the path resolved by the template.

Refer to the storage documentation & the storage guide for additional information.

- cmd: copy
   name: Copy tooling to DUT
   transport: *transport
   parameters:
      source: "[[storage.tool]]/system-suite"
      destination: /tmp/system-suite
      recursive: true

In this example, a directory from the storage system_suite is copied by referencing its parent path using the template storage.tool.

Secrets

Secrets can be referenced via secrets.name-of-secret. Common use-cases include API-Tokens.

Refer to the secrets tutorial for additional information.

name: Binarly Scan
description: Test the firmware with Binarly

#The binarly test works without a DUT, therefore we can leave the pre- & post-stage empty
pre-stage: empty
post-stage: empty

stages:
- name: Binarly Scan
    steps:
    - cmd: binarly report
        name: Binarly Scan
        parameters:
        url: "[[secrets.BinarlyURL]]"
        token: "[[secrets.BinarlyToken]]"
        file_path: "[[defaults.Binary]]"

In this example multiple secrets are templated from the workflow secrets data.

Defaults

YAML Anchors can be utilized within tests to minimize redundant statements. These anchors should be defined under the defaults keyword in the test file.

Example:

# Boot Test Configuration for ARM-based board
name: Boot Test
description: This test verifies that the ARM-based board boots correctly.

defaults:
  transport: &transport
    proto: ssh
    options:
      host: "[[attributes.Host]]"
      user: root
      password: root

stages:
  - name: Boot Stage
    steps:
      - cmd: ping
        name: Wait for SSH service
        options:
          timeout: 2m
        parameters:
          host: "[[attributes.Host]]"

      - cmd: cmd
        name: Run echo "Hello" on the device
        transport: *transport
        parameters:
          executable: echo
          args: ["Hello"]

      - cmd: cmd
        name: Run echo "World!" on the device
        transport: *transport
        parameters:
          executable: echo
          args: ["World!"]