Automated Build Process

Ever wondered what a build process is? It is the process of building and deploying the code and the database for a custom application.

Read on to understand the step-by-step process.


Build Process Steps

Step 1: Write and Commit bits of Code

Let's say one of our programmers is busy designing your individualized application on his/her own computer. Red light! What happens if the system crashes? Vast amounts of work may be lost forever. So instead, we commit (or upload) the code to a central source code repository. Imagine this repository as a holding zone, a database for our code.

Step 2: Scan the Code for Problems

With the code in the repository, we then scan it for common problems. There are a variety of tools available for this, based on programming language used, in our projects JSHint, FxCop and Code Duplication Checkers are some of the most commonly used. We like scanners because they can automatically monitor the code before we deploy it.

Step 3: Compile the Code

We compile the code after we've scanned it. In this step we change the programmer's commands into something that works on your desktop, mobile device or web browser. Here we also use scripts to create the database tables, test data and stored procedures.

Step 4: Run Automated Tests

Finally, we're ready for the automated tests. For instance, if we're working with a website application, scripts load the browser automatically, land on a specific page, and test how things work on that page. Typically, there are hundreds of automated tests for a given application. The quality of the application is vastly improved because the automated tests run daily.

Step 5: Report Any Problems

When automated tests detect a problem, our team receives immediate notification in order to swiftly repair it. The result is essentially bug free code throughout the development process. When our manual testers discover new issues, we develop a new automated test expressly for that issue. Selenium is our preferred software testing framework for user interface automated tests.

Quick Problem Solving

Our frequent integrations result in substantially reduced time needed to go back and discover where the problems are, allowing us to dedicate our resources to developing features.

Continuous Integration is inexpensive when compared to the time and effort spent integrating when problems have accumulated. If integration is done rarely, it just makes more difficult to detect and repair issues ruining project deadlines or, potentially, causing total project failure.

Why This Matters to You

Our well-developed build process saves us time - and you money - and minimizes potentially critical problems to better prepare the application for deployment to your server. Ultimately, we mimic deployment from the start but our build process makes the process details run smoother. We've found that adhering to our build process is the smartest software development technique.