Skip to main content

saucectl with CircleCI

These examples can apply to virtually any CircleCI deployment, provided that you already have some existing automated tests, and are either the maintainer or an admin of the target repository.

What You'll Need

Project Setup

The first step is to ensure you have a CircleCI account, and to login with your git hosting provider username; the examples below use GitHub authentication.

  1. Log in to CircleCI.
  2. Choose the desired repo and click Set Up Project.
  3. Select Add Config (or Use Existing Config). This creates a new branch in your project called circle-ci-project-setup.
note

Do not worry if your project fails to build. You'll need to modify the config.yml manually anyway.

Add Project Environment Variables

In order for CircleCI to communicate with Sauce Labs you need to authenticate with project environment variables.

  1. In CircleCI, go to your Project Settings.

    CircleCI Project Settings
  2. Select Environment Variables.

    Add Variables in CircleCI
  3. Add variables for your Sauce Labs account credentials as SAUCE_USERNAME and SAUCE_ACCESS_KEY, respectively.

    CircleCI Variables

Modify the CircleCI Configuration

  1. In the root of your project directory, create the .circleci directory if it doesn't already exist, and open/create config.yml.

  2. You can easily execute saucectl on CircleCI through saucectl-run orb. Add the orb to your current config.yml using the following reference to use it:

.circleci/config.yml
loading...
  1. Now you can use the orb directly as a step of one of your jobs:
.circleci/config.yml
loading...
tip

You can reference a complete config.yml example for more detail.

  1. Commit the updated config.yml to your git hosting service provider.
  2. Navigate back to the CircleCI dashboard to see your build pass.
CircleCI Output