CircleCI
CircleCI uses a .circleci/config.yml file to define your pipeline. This guide shows how to set up Bruin in your CircleCI pipeline to validate and unit-test your Bruin pipelines.
Installation
Bruin can be installed in CircleCI using the installation script. The CLI will be automatically added to your PATH.
yaml
- run:
name: Install Bruin
command: |
curl -LsSf https://getbruin.com/install/cli | sh
echo 'export PATH=$HOME/.local/bin:$PATH' >> $BASH_ENVSetting Up CircleCI
- Create a
.circlecidirectory in your repository. - Inside that directory, create a
config.ymlfile:
yaml
version: 2.1
jobs:
validate:
docker:
- image: cimg/base:stable
steps:
- checkout
# Install Bruin CLI
- run:
name: Install Bruin
command: |
curl -LsSf https://getbruin.com/install/cli | sh
echo 'export PATH=$HOME/.local/bin:$PATH' >> $BASH_ENV
# Validate your pipelines
- run:
name: Validate Pipelines
command: bruin validate
- run:
name: Unit Test Pipelines
command: bruin unit-test
workflows:
version: 2
validate-pipeline:
jobs:
- validateConfiguration Options
Specify Bruin Version
To install a specific version of Bruin, pass the version tag to the install script:
yaml
version: 2.1
jobs:
validate:
docker:
- image: cimg/base:stable
steps:
- checkout
- run:
name: Install Bruin
command: |
curl -LsSf https://getbruin.com/install/cli | sh -s v0.1.0
echo 'export PATH=$HOME/.local/bin:$PATH' >> $BASH_ENV
- run:
name: Validate Pipelines
command: bruin validate
- run:
name: Unit Test Pipelines
command: bruin unit-test
workflows:
version: 2
validate-pipeline:
jobs:
- validateRunning on Pull Requests Only
To run validation only on pull requests:
yaml
version: 2.1
jobs:
validate:
docker:
- image: cimg/base:stable
steps:
- checkout
- run:
name: Install Bruin
command: |
curl -LsSf https://getbruin.com/install/cli | sh
echo 'export PATH=$HOME/.local/bin:$PATH' >> $BASH_ENV
- run:
name: Validate Pipelines
command: bruin validate
- run:
name: Unit Test Pipelines
command: bruin unit-test
workflows:
version: 2
validate-pipeline:
jobs:
- validate:
filters:
branches:
ignore: main