A ready-to-use Pipeline for Buck projects.
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 .
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 .
Job | Description |
---|---|
build | Build project |
test | Run tests |
You can also use this pipeline programmatically:
import { test, build } from "jsr:@fluentci/buck";
await test(".");
await build(".");