forked from adobe/aepsdk-core-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request adobe#1 from adobe/circleci-project-setup
Add .circleci/config.yml
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Use the latest 2.1 version of CircleCI pipeline process engine. | ||
# See: https://circleci.com/docs/2.0/configuration-reference | ||
# For a detailed guide to building and testing on Android, read the docs: | ||
# https://circleci.com/docs/2.0/language-android/ for more details. | ||
version: 2.1 | ||
|
||
# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. | ||
# See: https://circleci.com/docs/2.0/orb-intro/ | ||
orbs: | ||
android: circleci/[email protected] | ||
|
||
# Define a job to be invoked later in a workflow. | ||
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs | ||
jobs: | ||
# Below is the definition of your job to build and test your app, you can rename and customize it as you want. | ||
build-and-test: | ||
# These next lines define the Android machine image executor. | ||
# See: https://circleci.com/docs/2.0/executor-types/ | ||
executor: | ||
name: android/android-machine | ||
|
||
# Add steps to the job | ||
# See: https://circleci.com/docs/2.0/configuration-reference/#steps | ||
steps: | ||
# Checkout the code as the first step. | ||
- checkout | ||
|
||
# The next step will run the unit tests | ||
- android/run-tests: | ||
test-command: ./gradlew lint testDebug --continue | ||
|
||
# Then start the emulator and run the Instrumentation tests! | ||
- android/start-emulator-and-run-tests: | ||
test-command: ./gradlew connectedDebugAndroidTest | ||
system-image: system-images;android-25;google_apis;x86 | ||
|
||
# And finally run the release build | ||
- run: | ||
name: Assemble release build | ||
command: | | ||
./gradlew assembleRelease | ||
# Invoke jobs via workflows | ||
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows | ||
workflows: | ||
sample: # This is the name of the workflow, feel free to change it to better match your workflow. | ||
# Inside the workflow, you define the jobs you want to run. | ||
jobs: | ||
- build-and-test |