Skip to main content

Rust

Running the pre-built Rust pipeline directly

Run the following command to run the pre-built Rust pipeline without having to initialize a project:

fluentci run rust_pipeline

Add Rust Pipeline to your project

Run the following command to add Rust pipeline to your project:

fluentci init -t rust

This will create a .fluentci directory in your project, feel free to customize the pipeline for your needs. You can then run the following command to start the pipeline:

fluentci run .

Jobs

JobDescription
buildbuild your project
testRun your tests

Programmatic usage

You can also use this pipeline programmatically:

import { build, test } from "https://pkg.fluentci.io/[email protected]/mod.ts";

await test();
await build();