Questions tagged [circleci-2.0]

Use this tag for questions about the CircleCI 2.0, which went into closed beta in November 2016. For the current version of CircleCI use the [circleci] tag.

Use this tag for questions about CircleCI 2.0, a significant update of Circle CI's Continuous Integration and Deployment Platform. CircleCI 2.0 went into closed beta in November 2016. For the current version of CircleCI, use the tag.

15 questions
6
votes
1 answer

Where does CircleCI-2.0 store the ssh private keys?

Aim To deploy docker container using ansible using CircleCI-2.0. Method A private key has been created and added using the CircleCI-2.0 UI. .circle/config.yml version: 2 jobs: build: docker: - image: ubuntu:xenial working_directory:…
030
  • 13,235
  • 16
  • 74
  • 173
4
votes
1 answer

CircleCI manually approved Deployment with Rollback

The new CircleCI 2.0 configuration allows to have a step of type approve which waits for user input. Is there some way to not just deploy code using manual stop, but also have a rollback to a previous version based on user input?
Evgeny Zislis
  • 8,963
  • 5
  • 38
  • 72
3
votes
1 answer

How to get other than "" when interpolating {{ .Environment.SOME_VAR }} (with SOME_VAR set) into cache key?

Using this configuration: version: 2 jobs: test: docker: - image: nixorg/nix:circleci environment: NIXPKGS_REV: 3c83ad6ac13b67101cc3e2e07781963a010c1624 steps: - restore_cache: name: Restore Nix Store Paths …
1
vote
0 answers

Maintaining CircleCI on several repository

We have several repositories on Github and just recently explored to integrate it our continuous integration/deployment to CircleCI. The thing is, every time we update something on .circleci directory of a certain repository, we need to do the same…
1
vote
1 answer

Circle ci workflow job stuck in "created" when adding a required step to the workflow

workflows: version: 2 build_deploy_test: jobs: - build: filters: branches: only: - develop - christest: requires: - install filters: …
Chris Stryczynski
  • 493
  • 1
  • 3
  • 13