v0.9.0
A ready-to-use CI/CD Pipeline and jobs for Android projects
Attributes
Includes Deno configuration
Repository
Current version released
2 years ago
Dependencies
deno.land/x
other
skypack.dev
lodash
Android Pipeline
A ready-to-use CI/CD Pipeline for your Android projects.
๐ Usage
Run the following command:
fluentci run 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:
fluentci run .Dagger Module
Use as a Dagger module:
dagger mod install github.com/fluent-ci-templates/android-pipeline@modJobs
| Job | Description |
|---|---|
| lintDebug | Lint your code |
| assembleDebug | generate apk (debug) |
| debugTests | Run your tests |
| assembleRelease | generate apk (release) |
| bundleRelease | generate aab (release) |
lintDebug(
src?: string | Directory
): Promise<string>
assembleDebug(
src?: string | Directory
): Promise<File | string>
assembleRelease(
src?: string | Directory
): Promise<File | string>
bundleRelease(
src?: string | Directory
): Promise<File | string>
debugTests(
src?: string | Directory
): Promise<string>Programmatic usage
You can also use this pipeline programmatically:
import { lintDebug, assembleDebug, debugTests } from "https://pkg.fluentci.io/android_pipeline@v0.9.0/mod.ts";
await lintDebug();
await debugTests();
await assembleDebug();๐ Example
See example for a working example.