Questions tagged [heroku-ci]
86 questions
2
votes
1 answer
Rails : Heroku CI : Mysql2::Error: Can't connect to MySQL server on '127.0.0.1' (111) for test env
I have deployed a rails app to heroku, using mysql database hosted on a remote server. For this I have added the heroku addon 'cleardb' and setup correct ENV Config vars specifying:
DATABASE_URL = mysql2://user:password@host?reconnect=true
I have…

Siddhant
- 293
- 1
- 3
- 8
2
votes
0 answers
Access Docker image in Heroku CI
I'm trying to get Heroku CI setup so that, upon code checkin, I can start a server running my app and then run Webdriver tests against it to confirm that the new code change is valid.
Locally, I run my tests using a selenium/standalone-chrome-debug…

Paul Andrew
- 525
- 2
- 15
2
votes
1 answer
Phoenix app crashing on Heroku CI
We are attempting to port our CI from Travis to Heroku. Tests all pass both locally and on Travis, but on Heroku we are getting some erlang errors that are difficult to debug.
All of the errors seem to arise from tests that make use of the Elixir…

JMurphyWeb
- 382
- 1
- 11
1
vote
0 answers
PHP Coverage in a Heroku Pipeline Review App
Has anyone had any luck calculating code coverage in the test phase of a review app?
With xdebug not being available, is there any sort of third party option to use as part of the process?

Lee
- 456
- 1
- 4
- 7
1
vote
1 answer
WARNING! Using –password via the CLI is insecure. Use –password-stdin
I started the build of the docker image in the ci cd pipeline and at the “build” step does not pass an authorization for a reason unknown to me, and gives an error:
Configure a credential helper to remove this warning. See
…

Helen Tran
- 11
- 1
- 2
1
vote
2 answers
How to deploy fast api as a backend in docker container to heroku
I am trying to deploy a fast API todo app onto Heroku by container registry. When I build the docker image and run it in my local. I am able to access my swagger in http://localhost:8001/docs. But I am not able to access when I deployed to heroku…

JAGADEESH
- 29
- 5
1
vote
0 answers
Heroku Pipeline with Github
Since the link between Github and Heroku is currently broken is it possible to manually add Review Apps to my pipeline using Heroku CLI?

Kruupös
- 5,097
- 3
- 27
- 43
1
vote
1 answer
Deploy Rails 5 on Heroku download yarn gets stuck with message "Timed out running buildpack Ruby"
I'm trying to deploy a Rails 5 application on Heroku.
It comes to the Download Yarn at https://yarnpkg.com/en/docs/install step,
then it seems to get stuck for about 30 minutes. Then it shows Timed out running buildpack Ruby and process is killed…

Zack Xu
- 11,505
- 9
- 70
- 78
1
vote
1 answer
REDIS_URL environment variable missing with heroku-redis:in-dyno
I'm currently using Heroku CI, with the standard "heroku-redis" and it works just fine, but I'm now trying to switch to using "heroku-redis:in-dyno".
{
"environments": {
"test": {
"addons":[
…

SirRawlins
- 494
- 3
- 18
1
vote
0 answers
Get git log history on Heroku CI dyno
I'm running into an issue where I want to get info from git log on a Heroku CI dyno, but Heroku doesn't seem to set the folder as a git directory (no .git folder.) Is there a way to opt into the dyno being setup with the git data intact?

Jake
- 383
- 6
- 26
1
vote
2 answers
Bitbucket-pipeline.yml does not read my Heroku environment variables
I want to deploy my application to HEROKU when I push to master via my bitbucket repo. I have the bitbucket-pipeline.yml file set-up which doesn't seem to have any syntax errors.
But the build fails while reading my $HEROKU_API_KEY. This key is in…

Favour George
- 1,525
- 13
- 18
1
vote
0 answers
How to include a separate git repository with tests in Heroku pipeline?
We are trying to set up a CI pipeline for our React application in Heroku.
For now, we have automatic deployment setup for our application which is triggered by any commit to the git repository.
We need to run tests before heroku releases the new…

Harjot
- 49
- 1
- 6
1
vote
1 answer
CI for multi-repository project
My current project consists of three repositories. There is a Java (Spring Boot) application and two Angular web clients.
At the moment I am running a deploy.sh script which clones each repository and then deploys the whole thing.
# Clone all…

Stefan Falk
- 23,898
- 50
- 191
- 378
1
vote
1 answer
Heroku CI build fails when trying to add opencv, but app deploy works
We are build an API on Heroku and have been moving pretty quickly until we recently added opencv via https://www.npmjs.com/package/opencv4nodejs
Works fine on development environment and also if we deploy using git push, but if we try to use Heroku…

rodcul
- 23
- 3
1
vote
0 answers
Heroku CI Unable to initialize CI build environment,
I'm setting up Heroku CI for my app and I'm getting the following error: Could not create test run. Unable to initialize CI build environment, please try again.
Problem is I have no idea why. I have my app.json set up like so:
{
"environments": {
…

Iohannes
- 267
- 1
- 4
- 13