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
19
votes
6 answers

Difference between Xcode and git for resolving swift packages

So the background is this: I have an Xcode project that depends on a swift package that's in a private repository on github. Of course, this requires a key to access. So far, I've managed to configure CI such that I can ssh into the instance and git…
ratbum
  • 1,030
  • 12
  • 29
19
votes
3 answers

How to push a commit to Github from a CircleCI build using a personal access token

When executing a build for git repository giantswarm/docs-content in CircleCI, I'd like to push a commit to another repository giantswarm/docs. I have this in the deployment section of circle.yml: git config credential.helper cache git config…
Marian
  • 14,759
  • 6
  • 32
  • 44
18
votes
2 answers

Rails: rake db:structure:load times out on CircleCI 2.0

Currently, rake db:schema:load is run to setup the database on CircleCI. In migrating from using schema.rb to structure.sql, the command has been updated to: rake db:structure:load. Unfortunately, it appears to hang and does not return: $ bin/rake…
Kache
  • 15,647
  • 12
  • 51
  • 79
18
votes
2 answers

Pip install without progress bars

In my Django application I have a circle.yml file that runs 'pip install -r requirements/base.txt'. When I push up code, and check the CircleCI logs when there is an error, its hard to get to because there are so many dependencies and as of pip6…
TJB
  • 3,706
  • 9
  • 51
  • 102
18
votes
4 answers

Where to store Android KeyStore file for CirlceCi build?

I am trying to configure continuous integration build for my Android app. I use CircleCi platform for it. Now I store my apps Keystore.jks file locally, but CircleCi needs it to sign my app. How can I achieve that without storing the file on my git…
bleo
  • 219
  • 2
  • 8
17
votes
3 answers

CircleCI: Error unmarshaling return header; nested exception is:

We keep getting the following exception on CircleCI while building out project. Everything runs well when running the job from the CircleCI CLI. Has anyone found a fix / resolution for this? Compilation with Kotlin compile daemon was not…
dazza5000
  • 7,075
  • 9
  • 44
  • 89
16
votes
3 answers

Using Vagrant on cloud CI services

Are there any cloud CI services that allow Vagrant VMs to run using VirtualBox as a provider? Early investigation shows this seems not to be possible with Travis CI or Circle CI, although the vagrant-aws plugin allows for the use of AWS servers as a…
15
votes
5 answers

Unknown platform error occurred when running the UTP test suite

When trying to build android app Espresso Instrumentation Tests with circleci Unknown platform error occurred when running the UTP test suite. Task :app:connectedDebugAndroidTest FAILED Test results saved as…
RockyGlobal
  • 525
  • 5
  • 13
15
votes
8 answers

Keep getting permissions error gcloud.container.clusters.get-credentials

I am trying to integrate CircleCi with gcloud Kubernetes engine. I created a service account with Kubernetes Engine Developer and Storage Admin roles. Created CircleCi yaml file and configured CI. Part of my yaml file includes: docker: …
Naor
  • 23,465
  • 48
  • 152
  • 268
15
votes
1 answer

How to integrate firebase test lab with circleci

Hi I want to test my app on firebase test lab. I want to integrate it with circleci. I have read this document https://circleci.com/docs/1.0/firebase-test-lab/ and created config.yml I have created GCLOUD_SERVICE_KEY in the environment variable of…
N Sharma
  • 33,489
  • 95
  • 256
  • 444
15
votes
2 answers

CircleCI 2.0 SSH debug: Failed to enable SSH, No SSH key is found

Config: CircleCI 2.0 Bitbucket private repo After I click on "Rebuild with SSH", the "Enable SSH" section outputs Failed to enable SSH No SSH key is found. Please make sure you've added at least one SSH key in your VCS account. What does…
Carson Ip
  • 1,896
  • 17
  • 27
15
votes
1 answer

JGit sets git: URI instead of https: for remote on CircleCI

I have the following code (see the comments for what's happening): // Clone repository from GitHub into a local directory. Git git = Git.cloneRepository() .setBranch("gh-pages") …
randers
  • 5,031
  • 5
  • 37
  • 64
14
votes
5 answers

Cypress Test Runner unexpectedly exited via a exit event with signal SIGSEGV in circleCI

I am stuck in this problem. I am running cypress tests. When I run locally, it runs smoothly. when I run in circleCI, it throws error after some execution. Here is what i am getting: [334:1020/170552.614728:ERROR:bus.cc(392)] Failed to connect to…
14
votes
2 answers

ReactNative 0.59.x build fails on CircleCI with exit value 137

When building the app on CircleCI for v0.59.x it gives me the following error (It used to work fine till v0.57.8): [12:45:19]: ▸ Note: Some input files use or override a deprecated API. [12:45:19]: ▸ Note: Recompile with -Xlint:deprecation for…
Sourabh
  • 8,243
  • 10
  • 52
  • 98
14
votes
2 answers

How to give Circle CI SSH access to my server?

I have some questions and issues with my CI and CD solution. Rails: 4.2 Capistrano: 3.4.0 The application is hosted on a private server. Right now I have the workflow working with deploying development, staging and production via the terminal. I…
davidwessman
  • 1,170
  • 8
  • 27