Skip to content
This repository has been archived by the owner on Feb 8, 2023. It is now read-only.

Latest commit

 

History

History
61 lines (47 loc) · 1.87 KB

RUST.md

File metadata and controls

61 lines (47 loc) · 1.87 KB

Rust

Overview

Steps for building and testing with Golang.

Tools Section

Name Required Type Default Description
buildImage Required String Docker image containg tools for Rust.
additionalArgs List A list of additional flags to send to the cargo command.
components List Additional rustup components to install.
command String build Which cargo command to execute.

Available Methods

cargo

Create a Pull Request in GitHub.

Name Type Default Description
buildImage String Docker image containg tools for Rust.
additionalArgs List A list of additional flags to send to the cargo command.
components List Additional rustup components to install.
command String build Which cargo command to execute.

cargo Example

branches:
  feature:
    steps:
    - rust:
      - cargo:
      - cargo:
          command: build
          title: Fix for issue {{ branch_name }}.

Full Example Pipeline

pipelines:
  tools:
    branches:
      patterns:
        feature: .+
  branches:
    feature:
      steps:
        - rust:
          - cargo:
              command: build

Additional Resources