Skip to content

fluent-ci-templates/buck-pipeline

Repository files navigation

Buck Pipeline

fluentci pipeline deno compatibility

A ready-to-use Pipeline for Buck projects.

🚀 Usage

Run the following command in your project:

fluentci run buck

Or, if you want to use it as a template:

fluentci init -t buck

This will create a .fluentci folder in your project.

Now you can run the pipeline with:

fluentci run .

🧩 Dagger Module

Use as a Dagger module:

dagger install github.com/fluent-ci-templates/buck-pipeline@main

Call functions from the module:

dagger call -m github.com/fluent-ci-templates/buck-pipeline@main build --src .

Jobs

Job Description
build Build project
test Run tests

Programmatic usage

You can also use this pipeline programmatically:

import { test, build } from "jsr:@fluentci/buck";

await test(".");
await build(".");