Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
190 views

Problem : Hello everyone, I have an error in integrating circli on my symfony project. It can't build because there is a problem between composer.lock and composer.json Project structure: -root ...
Théo Pantecouteau's user avatar
1 vote
1 answer
334 views

I have a workflow on CircleCi that builds and deploys a branch to AWS when a pull request is open from that branch. I have a second workflow that tears down the deployed environment when the pull ...
Pila's user avatar
  • 5,902
2 votes
1 answer
542 views

I'm trying to add an approval job and I want only users from "team-leaders" groups at GitHub can click the approve. what I've done so far: I created a GitHub team - "team-leaders" ...
Gal Yakir's user avatar
  • 155
0 votes
0 answers
159 views

I am currently working on an app that uses ruby on rails on the backend and react.js on the front end. Since Heroku 18 is ending, I decided to start the upgrade to Heroku 20 which will be available ...
Creider9's user avatar
0 votes
1 answer
936 views

I have read https://circleci.com/docs/configuration-reference#logic-statement-examples and I want to had a condition when the tag match a certain pattern to the logic statement: when << ...
Dimitri Kopriwa's user avatar
3 votes
1 answer
2k views

In our repo build and deploy are two different workflows. In build we call lerna to check for changed packages and save the output in a file saved to the current workspace. check_changes: ...
pollx's user avatar
  • 709
0 votes
1 answer
169 views

I'm trying to cut my git tag and pass this as an environment variable so other parts of my circle ci build know which directory to look at. How do I go about doing this? run-terraform: docker: ...
Nicholas Lawrence's user avatar
0 votes
0 answers
113 views

In CircleCi config, I added my-domain to etc/hosts in-order to access local webserver by domain name. For example => http://my-domain:3000/some-endpoint But when I start Selenium-testing using the ...
Necromancer's user avatar
0 votes
0 answers
206 views

For example if I have class A1 in project A, B1 in project B, C1 in project C, and D1 in project D. Both class A1 and C1 have dependency on class D1. When I updated class D1 I want to track which ...
Fellita Candini's user avatar
0 votes
1 answer
714 views

I'm trying to set up Circle CI for a Rails backend to automate a fair amount of tests, some of the tests are legacy code that uses YAML fixtures with erb tags. I'm using a Ruby 2.6.9, Rails 5.2.6, ...
Omar Luq's user avatar
0 votes
1 answer
1k views

We have a repository which now draws from a private repository for a particular component. A BitBucket SSH key is required to get access to this. It is a Flutter app and the private repo reference in ...
Turkey's user avatar
  • 422
1 vote
0 answers
381 views

I’m trying to deploy the jar file after building from circle ci by fetching from one of the Github repo into my local machine. Here are my config file and the steps which I followed. # Use the latest ...
D N Vijay Kumar's user avatar
0 votes
1 answer
187 views

I was looking at CircleCI's sample config for Ruby on Rails which sets 2 jobs: build and test. version: 2.1 # Use 2.1 to enable using orbs and other features. # Declare the orbs that we'll use in our ...
Chiperific's user avatar
  • 4,746
1 vote
1 answer
2k views

In the circle ci dashboard I set enviornment variables like DEV_USEFUl_API_KEY, PROD_USEFUL_API_KEY. Then in my circleci config file (v2.1) I do this - run: name: Run Tests command: | if ...
supertux's user avatar
  • 2,269
2 votes
0 answers
714 views

I moved from a single CircleCI job with many steps to 3 different jobs with individual steps. I like the new set up as Job 2 ( run_script_inside_con ) and Job 3 ( scan_container_with_ ) don't start ...
rustyMagnet's user avatar
  • 4,285
0 votes
1 answer
92 views

My main idea here is to have two separated environments - one for production and one for staging. For that purpose, I created two repos on Heroku (I wasn't sure it was possible to make it with one ...
user avatar
1 vote
1 answer
84 views

I found separate Circle CI docker image for Php and Java. - image: circleci/php:7.2.30 - image: circleci/openjdk:11.0.3-jdk-stretch And I have run command to use 'java' command and it fails because ...
SkyDev's user avatar
  • 135
0 votes
1 answer
1k views

I would like to use CircleCi to run my Cypress and react-testing-library tests because I want to test my react app. On local env I would run (which work fine): yarn run test to execute my react-...
Lukas Bunat's user avatar
0 votes
1 answer
484 views

I have a scheduled workflow that stopped running all of the sudden. Its supposed to run once a week, the last time it ran the config looked like workflows: version: 2 commit-workflow: jobs: ...
gary69's user avatar
  • 4,360
0 votes
1 answer
1k views

Is there a way to restrict circleci deployment on checkings that have a git release(release a tag)
aditya Damera's user avatar
1 vote
0 answers
453 views

Summary: I'm trying to automate the deployment of a static site (gatsby) to an S3 bucket using a CircleCI orb, but I keep getting the following error: #!/bin/bash -eo pipefail aws configure set ...
SergioPichardo's user avatar
5 votes
1 answer
13k views

I have followed the guide described in Conditional steps in jobs and conditional workflows and written the below code for my CircleCI pipeline. version: 2.1 workflows: version: 2.1 workflowone: ...
Babar Baig's user avatar
3 votes
1 answer
3k views

I am using Circle CI to build and push the image to AWS ECR, then use this image to deploy a container(with FARGATE as instance) in a service inside a cluster in AWS ECS. The problem is, the tasks are ...
Naveen Reddy Marthala's user avatar
0 votes
1 answer
2k views

On firebase console a testers group exists with name and alias, e.g. test-group. I'm distribution with: firebase_app_distribution( app: ****, service_credentials_file: ***, groups: 'test-...
top.dev's user avatar
  • 457
1 vote
0 answers
333 views

I am building my React Native iOS app with circleci 2.0, my build is stuck at Signing for about 40 minutes and not moving ahead. I have my apple id with 2FA so have added ...
Krunal Panchal's user avatar

1
2 3 4 5 6