Skip to main content

Clojure

Running the pre-built Clojure pipeline directly

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

fluentci run clojure_pipeline

Add Clojure Pipeline to your project

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

fluentci init -t clojure

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
testRun your tests
uberjarBuild an uberjar

Programmatic usage

You can also use this pipeline programmatically:

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

await test();
await uberjar();