Code Monkey home page Code Monkey logo

circlecisample's Introduction

CircleSample on Android Projects

platform API

Author Romell Domínguez

Use CircleCi Service, please create acount and register on CircleCi:

image

Basic Module

When your Android/Gradle project its ready, need register application on CircleCi.

In this tutorial we use Github Repository, CircleCi need a yml file to connect with gradle whole put on '.circleci/':

./circleci/config.yml

version: 2
jobs:
  build:
    working_directory: ~/code
    docker:
      - image: circleci/android:api-25-alpha
    environment:
      JVM_OPTS: -Xmx3200m
    steps:
      - checkout
      - restore_cache:
          key: jars-{{ checksum "build.gradle" }}-{{ checksum  "app/build.gradle" }}
      - run:
         name: Chmod permissions #if permission for Gradlew Dependencies fail, use this.
         command: sudo chmod +x ./gradlew
      - run:
          name: Download Dependencies
          command: ./gradlew androidDependencies
      - save_cache:
          paths:
            - ~/.gradle
          key: jars-{{ checksum "build.gradle" }}-{{ checksum  "app/build.gradle" }}
      - run:
          name: Run Tests
          command: ./gradlew lint test
      - store_artifacts:
          path: app/build/reports
          destination: reports
      - store_test_results:
          path: app/build/test-results

image

In the configuration of the Github, must be insured that the permissions of writing are enabled for committing immediate in the original branch

image

For dynamic, create a test unit that throw error assert on Java Class into test directory:

image

Write a error comment into commit, just only for visualize on Repository and CircleCi

image

Create and Push a new branch with this commit

image

When pushed on remote repository, we can view on CircleCi dashboard, on this display show every testing, the status change on real time running

When finished, display one of two status failed or success. In this case show an issue

image

Suppose we found the problem, test unit cases had been corroborated, make commit and push it, into CircleCi dashboard show automatically

image

image

Great CircleCi run all test cases and not find any issue, but found a previous test case failed already corrected it.

image

Summarizing the dashboard of circleCi, shows the following:

  • NOT RUN: Had a test case dont run, circleCi need permissions for run testing cases.
  • SUCCESS: All test cases run successful
  • FAILED: Excited test cases don't run well
  • FIXED: Previous test case failed already had corrected it

image

Intermediate Module

Once test the potential of the tool we are going to see the really useful thing that we can do with Circleci, let's suppose that in our team development, then we want to assure the main branch of our repository always have a stable version, where everything developed has been proved correctly.

On Github go to configure and edit branch permissions, stay blank space in 'write access' input, and uncheck or revoke all permissions for revoking directly new changes, and enable pull request task for everybody.

image

Create a new testing case call 'serviceModule', in my case use mockito library

image

Make the respective commit

image

But tried to send our changes to the remote 'origin', the repository will reject, because dont have permissions

Now, What we do?

image

Simple, create a new branch from our worked branch If use Android Studio, on 'Push Commits' window, write the name for new branch called 'BranchServiceTest'

image

image

When pushed the branch, normally work because we only disabled the changes on master branch or directly push

image

On the CircleCi dashboard, a new record with NOT RUN label and the last commit, CircleCi detected new changes on repository but doesn't had permissions.

image

On Github we look the three change had a new test_branch branch, builed from AndroidStudio

image

Suppose a person in charge of the changes, witch create the new branch need merge on remote origin, the person create a pull request

image

On details put a message for the respective merge request and indicate close branch when resolved conclits.

image

On our project Pull Request display a new request:

image

image

On CircleCi dashboard, added a new record, when run all test and passed. The record status will change. In our case 'success'

image

On the screen display we visualize a counter of executed tests, in our case not detected that the issues of other test cases have been modified, only it will execute our test 'serviceModule' of the class ModuleTest

image

When the administrador had confirm the new implementation, procede to merge. Assuring a rate of reliability of the code at all time

image

Since we can estimate the tool Circleci, it allows us a great usefulness, for the management and control of the versioning of the cases of tests (proofs) automated, allowing to diversify the tasks between the collaborators of the project where they need test

Advance module

On CircleCi dashboard show the result:

image

We can see the record to detail of the testing, step by step display all the commands that we had written on yml file:

image

On CircleCi yml file, check 'Chmod permissions'. Because it is very usual that the beginners in this tool have problems due to depending on the this machine(CircleCi Server) would need permissions

...
jobs: ...
  build: ...
    steps: ...
      - run: ...
         command: sudo chmod +x ./gradlew
...

CircleCi tools supported the gradle flavors, in this project use 'SonarQube' flavor, for connect it to a base of facts of testing need it on the part of the organization:

image

Thanks for read this Tutorial

License

Copyright 2018 Romell D.Z.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

2018, July

<style> img[src*='#center'] { width:500px; display: block; margin: auto; } img[src*='#vertical'] { width:250px; display: block; margin: auto; } img[src*='#circleci'] { width:100px; display: block; margin: auto; } </style>

circlecisample's People

Contributors

romellfudi avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.