v0.7.1
A ready-to-use CI/CD Pipeline and jobs for Android projects
Attributes
Includes Deno configuration
Repository
Current version released
3 years ago
Dependencies
deno.land/x
other
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 .Jobs
| Job | Description |
|---|---|
| lintDebug | Lint your code |
| assembleDebug | generate apk (debug) |
| debugTests | Run your tests |
| assembleRelease | generate apk (release) |
| bundleRelease | generate aab (release) |
assembleDebug(src: String!): String
assembleRelease(src: String!): String
bundleRelease(src: String!): String
debugTests(src: String!): String
lintDebug(src: String!): StringProgrammatic usage
You can also use this pipeline programmatically:
import { lintDebug, assembleDebug, debugTests } from "https://pkg.fluentci.io/android_pipeline@v0.7.1/mod.ts";
await lintDebug();
await debugTests();
await assembleDebug();