Questions tagged [circleci]

CircleCI is a hosted continuous integration testing tool integrated with popular code management services such as GitHub. It is commercial but free to open source projects.

CircleCI helps you to automate the software development process using continuous integration and continuous delivery(CICD).

1887 questions
0
votes
1 answer

How to fire circle-ci build in one repo when pushing in another repository

I'm still playing around with github/circle-ci and conan. I've got a repository "fcdk", which is a simple C++ library. I've another repository "fcdk-conan" which contain the conan's recipe to build the first repository (fcdk). This second repository…
Gojita
  • 490
  • 4
  • 10
0
votes
2 answers

circleci python -t flag when running tests does not work

I have this run step in my circle.yaml file with no checkout or working directory set: - run: name: Running dataloader tests command: venv/bin/python3 -m unittest discover -t dataloader tests The problem with this is that the…
Jwan622
  • 11,015
  • 21
  • 88
  • 181
0
votes
1 answer

How to automatically pass multiple inputs to prompts in circleci?

I am trying to apply a cookiecutter template. When I run the command "cookiecutter private_git_repo", it asks if I want to use overlays or not? So, I need to pass "yes" to that. Later, it gives multiple options to ask which overlay I want to use.…
loadbox
  • 646
  • 14
  • 34
0
votes
1 answer

Configure .yml to execute multiple commands

Hello i have simple configuration in my project: version: 2 jobs: build: docker: - image: circleci/node:7 steps: - checkout - run: name: install-dependencies …
Piotr Żak
  • 2,046
  • 5
  • 18
  • 30
0
votes
1 answer

Creating a virtualenv on circleci can't be done in separate step in a job/workflow. Why is this?

I'm trying to install requirements in a build step and run tests on circleci. I run into a permission denied problem when running the pip install because it tries to install the requirements globally. I could install the requirements on a user…
Jwan622
  • 11,015
  • 21
  • 88
  • 181
0
votes
1 answer

Cannot install ElasticSearch on circleci due to permission errors

I have this error on elasticsearch: Collecting aws-requests-auth Downloading https://files.pythonhosted.org/packages/a7/ba/e1601d0508b4150f8fe503f681079a7c9a17f7aa44e0d5cc42b9e3abdb8e/aws-requests-auth-0.4.2.tar.gz Collecting boto3 Downloading…
Jwan622
  • 11,015
  • 21
  • 88
  • 181
0
votes
1 answer

CircleCI - how to download dependency only if not cached

in brief When using circleci to run unittest, I have to download & install LibreOffice. How can we do the download only if not cached? p.s. Also posted on circleci support here details LibreOffice download & install often takes 30+ seconds to…
Nam G VU
  • 33,193
  • 69
  • 233
  • 372
0
votes
1 answer

Docker container can't connect circleCI postgres database

I am trying to set up a circleCI test, I have created a database in circleCI and I have a docker container which needs to connect to the database, but it can't. Inside my docker container is a script which before it does anything it runs pg_isready,…
DatabaseShouter
  • 814
  • 9
  • 11
0
votes
1 answer

Block additional CircleCI builds until Elastic Beanstalk deployment completes

We have a multi-step deployment procedure: Step 1 -> Send assets to S3, other prep work, and trigger elastic beanstalk deployment (occurs on CircleCI) Step 2 -> Elastic Beanstalk deployment (occurs on AWS) What I'd like to do is block Circle…
nratter
  • 397
  • 4
  • 14
0
votes
1 answer

How to deploy a Java 11 app to AWS Elastic Beanstalk with CircleCI?

I'm trying to deploy a Java 11 app to EB with Docker container via CircleCI. How should the config files look like? The build phase goes ok but the deployment phase stops to the point where the CircleCI won't find the Dockerfile and…
0
votes
1 answer

What is the npm command to install .circleci/config.yml for cypress test

We are having CircleCI CI/CD pipeline for our project. I would need to setup cypress test to run on CircleCi pipeline. Could anyone please advise about the npm install command to create circle.yml or .circleci/config.yml file under the root folder:…
soccerway
  • 10,371
  • 19
  • 67
  • 132
0
votes
1 answer

Is it a way to create references for test and deploy environment and add extra steps afterwards in yaml?

I have to workflows into pipeline. I want my test and deploy pipelines to share the same steps but on top of this, I want to have extra steps into the deploy pipeline. I tried to search for a solution and bumped into StackOverflow QA. Unfortunately,…
Dmytro Chasovskyi
  • 3,209
  • 4
  • 40
  • 82
0
votes
1 answer

Why does provisioning profile need to be set to distribution for both debug and release?

I'm attempting to build my react native app via fastlane on CircleCI. I'm using match for managing certificates/profiles and using these guides: Fastlane: CircleCI Integration CircleCI: Example configuration for using Fastlane on CircleCI CircleCI:…
AaronDS
  • 851
  • 2
  • 13
  • 31
0
votes
1 answer

CircleCI migrating v1 to 2 - local Git commit not working

I'm new to CircleCI. I'm trying to migrating CircleCI1.0 to 2.0 and I got this error: #!/bin/bash -eo pipefail - if [ -n "$(git status --porcelain)" ]; then echo "*** Files have been updated. ***"; git add *; git commit…
Jagadeesh Govindaraj
  • 6,977
  • 6
  • 32
  • 52
0
votes
1 answer

What are the tradeoffs between using CircleCI's prebuilt images vs pulling private images?

What are the tradeoffs between using CircleCI's prebuilt images vs pulling private images? I'd imagine private images are more deterministic but more difficult to setup. Is there any reason to use prebuilt images other than initial upfront…
Antoine Vo
  • 559
  • 4
  • 10
1 2 3
99
100