A ready-to-use CI/CD Pipeline for your Clojure projects.
Run the following command:
fluentci run clojure_pipeline
Or, if you want to use it as a template :
fluentci init -t clojure
This will create a .fluentci
folder in your project.
Now you can run the pipeline with:
fluentci run .
Or simply:
fluentci
Use as a Dagger module:
dagger install github.com/fluent-ci-templates/clojure-pipeline@main
Job | Description |
---|---|
test | Run the tests |
uberjar | Build an uberjar |
uberjar(
src: Directory | string
): Promise<Directory | string>
test(src: Directory | string): Promise<string>
You can also use this pipeline programmatically :
import { test, uberjar } from "jsr:@fluentci/clojure";
await test();
await uberjar();