Docker/Images/Machine
http://circleci.com/docs/2.0/circleci-images/ https://circleci.com/docs/2.0/build/#nav-button
Chossing your Executor Type
https://circleci.com/docs/2.0/executor-types/
This version of CircleCI enables you to run jobs in one of three environments: using Docker images, using a dedicated Linux VM image, or using a macOS VM image.
For building on Linux, there are tradeoffs to docker versus machine, as follows:
The docker key defines Docker as the underlying technology to run your jobs using Docker Containers. Containers are an instance of the Docker Image you specify and the first image listed in your configuration is the primary container image in which all steps run.
Docker increases performance by building only what is required for your application. Specify a Docker image in your .circleci/config.yml file that will generate the primary container where all steps run:
jobs:
build:
docker:
- image: buildpack-deps:trusty
In this example, all steps run in the container created by the first image listed under the build job. To make the transition easy, CircleCI maintains convenience images on Docker Hub for popular languages
The machine option will run your jobs in a dedicated, ephemeral Virtual Machine (VM). Note: Use of machine may require additional fees in a future pricing update. To use the machine executor with the default machine image, set the machine key to true in .circleci/config.yml:
jobs:
build:
machine: true
Using the machine executor enables your application with full access to OS resources and provides you with full control over the job environment, if for example, you need to use ping or to modify system with sysctl commands. In addition, it enables your repo to build a docker image without additional downloads for languages like Ruby and PHP.
The following section provide a overview of jobs and steps, changes to keys from 1.0 and new keys are nested Steps and new keys for workflows:
Jobs are a collection of steps. All the steps in the job are executed in a single until which consumes a Circle CI container from your plan its running.
In 2.0 Jobs can be run using machine executor which enables reuse of recently used machine executor runs, or the docker executor which can compose Docker containers to run your tests and any services they require, such as databases, or the macos executor
Steps are a collection of executable command which are running a job, the checkout: key is required to checkout your code and a key for run: enables addition of arbitrary, multi-line shell command scripting
Sample Configuration with Parallel Jobs
Following is a sample 2.0 .circleci/config.yml file.
version: 2
jobs:
build:
docker:
- image: circleci/<language>:<version TAG>
steps:
- checkout
- run: <command>
test:
docker:
- image: circleci/<language>:<version TAG>
steps:
- checkout
- run: <command>
workflows:
version: 2
build_and_test:
jobs:
- build
- test
This example shows a parallel job workflow where the build and test jobs run in parallel to save time.
Workflow is set of rules for defining a collection of jobs and their run order that shortens feedback loop. We can run the job in sequence or parallel.
Workflows Configuration:
To run a set of parallel jobs, add a new workflows: section to the end of your existing .circleci/config.yml file with the version and a unique name for the workflow. The following sample .circleci/config.yml file shows the default workflow orchestration with two parallel jobs. It is defined by using the workflows: key named build_and_test and by nesting the jobs: key with a list of job names.
version: 2
jobs:
build:
docker:
- image: circleci/<language>:<version TAG>
steps:
- checkout
- run: <command>
test:
docker:
- image: circleci/<language>:<version TAG>
steps:
- checkout
- run: <command>
workflows:
version: 2
build_and_test:
jobs:
- build
- test
Sequential Job Execution Example:
The following example shows a workflow with four sequential jobs. The jobs run according to configured requirements, each job waiting to start until the required job finishes successfully as illustrated in the diagram.
The following config.yml snippet is an example of a workflow configured for sequential job execution:
workflows:
version: 2
build-test-and-deploy:
jobs:
- build
- test1:
requires:
- build
- test2:
requires:
- test1
- deploy:
requires:
- test2
The dependencies are defined by setting the requires: key as shown. The deploy: job will not run until the build and test1 and test2 jobs complete successfully. A job must wait until all upstream jobs in the dependency graph have run. So, the deploy job waits for the test2 job, the test2 job waits for the test1 job and the test1 job waits for the build job.