v0.2.9
A ready-to-use CI/CD Pipeline and jobs for Android projects
Attributes
Includes Deno configuration
Repository
Current version released
3 years ago
Android Pipeline
A ready-to-use CI/CD Pipeline for your Android projects.
🚀 Usage
Run the following command:
dagger run fluentci android_pipelineOr, if you want to use it as a template:
fluentci init -t androidThis will create a .fluentci folder in your project.
Now you can run the pipeline with:
dagger run fluentci .Jobs
| Job | Description |
|---|---|
| lintDebug | Lint your code |
| assembleDebug | generate apk (debug) |
| debugTests | Run your tests |
| assembleRelease | generate apk (release) |
| bundleRelease | generate aab (release) |
Programmatic usage
You can also use this pipeline programmatically:
import Client, { connect } from "@dagger.io/dagger";
import { Dagger } from "https://deno.land/x/android_pipeline/mod.ts";
const { lintDebug, assembleDebug, debugTests } = Dagger;
function pipeline(src = ".") {
connect(async (client: Client) => {
await lintDebug(client, src);
await assembleDebug(client, src);
await debugTests(client, src);
});
}
pipeline();