Questions tagged [codeship]

A simple to use Continuous Integration and Delivery software as a service. Add this tag, if you have questions regarding your projects on Codeship, or how to use Codeship for your projects.

Continuous Integration & Delivery as a Service

A simple push to your repository runs your automated tests and configured deployments on our powerful machines. From a simple deployment to Heroku to complex Deployment Pipelines for your large infrastructure, all can be set up with ease.

Let Codeship Take Care of the Infrastructure

Use your resources to allow your team to build an amazing product for your customers, which will result in a strong and successful company. Codeship will manage and scale your test and delivery infrastructure and take care of the release process. You’ll focus on what you do best — writing code.

See https://codeship.com for more information

232 questions
2
votes
1 answer

v8-compile-cache-0 directory appears when deploying to Digital Ocean via Codeship

I am deploying to Digital Ocean via Codeship. Following this example, Codeship runs the following custom script in the Droplet: ssh root@ 'cd /var/www/example/backend/; git checkout master; git pull; npm install;' This all runs fine.…
223seneca
  • 1,136
  • 3
  • 19
  • 47
2
votes
1 answer

Docker multi-stage builds and Codeship running container

I'm doing a multi-stage Docker build: # Dockerfile ########## Build stage ########## FROM golang:1.10 as build ENV TEMP /go/src/github.com/my-id/my-go-project WORKDIR $TEMP COPY . . RUN make build ########## Final stage ########## FROM…
Paul J. Lucas
  • 6,895
  • 6
  • 44
  • 88
2
votes
0 answers

Using Shopify's themekit to deploy via codeship

Hi I'm looking to use codeship to deploy my master branch to my production shopify store. How would i setup themekit so it would be available on my pipeline ? Installing themekit involves sudo : curl -s…
George Ananda Eman
  • 3,292
  • 8
  • 28
  • 29
2
votes
0 answers

How to use Codeship's project SSH key in step file

In the CodeShip Pro documentation, the recommendation for doing Continuous Deployment to Digital Ocean involves encrypting an SSH private key, and storing that in your repository. To do this, you need to install jet on your machine. Unfortunately,…
xenrelay
  • 111
  • 1
  • 9
2
votes
1 answer

registering ECS tasks with codeship

I am trying to deploy an application to AWS ECS using codeship. I have my docker-compose file and everything is ready to be deployed. Codeship documentation says to do something like this in the codeship-steps.yml file: aws ecs…
anyavacy
  • 1,618
  • 5
  • 21
  • 43
2
votes
1 answer

Codeship Basic npm install fails Error: SSL Error: CERT_UNTRUSTED

I'm having a consistent issue where my Codeship Basic setup step is failing when running npm install: npm http GET https://registry.npmjs.org/babel-runtime npm ERR! Error: SSL Error: CERT_UNTRUSTED npm ERR! at ClientRequest.
krsyoung
  • 1,171
  • 1
  • 12
  • 24
2
votes
1 answer

Codeship breaks on rails-devise-roles tests

The rails-devise-roles app's Selenium tests for user-delete-spec.rb and user-edit-spec.rb seems to break when running in Codeship's CI. The rspec works fine on my local machine, but breaks in Codeship. The rspec output I get is as…
2
votes
1 answer

Different ENV variable for each deployment pipeline on Codeship

I have JS application that consumes REST API specified in API_HOST environment variable. Application has two deployment pipelines configured on Codeship for each branch (develop, master). For each branch I would like to provide different REST…
2
votes
1 answer

Functional Testing on Codeship for a PHP Application

I have a PHP Application (Symfony and ezplatform) and want to run Functional tests Automatically after every push in git. the requirement for that is that i need A database where I can put my latest dump of DB on it and then run the tests against…
Amir Koklan
  • 897
  • 2
  • 12
  • 32
2
votes
1 answer

Codeship basic build hanging

I am working on a project that uses Codeship to deploy builds. I got up today and saw: Normally a build takes ~2 minutes, but I have waited on this one for half an hour. Codeship does not show anything being run. Not a single command. And my…
user6560716
2
votes
1 answer

CodeShip How to run tests that shows warnings instead of fails the build

We are using PHPUnit and we are running a bunch of integration tests which tests our 3rd party APIs, and we want them to show a warning when they fails in Codeship but don't block the build because we really have no control over them. Is this even…
2
votes
1 answer

CodeShip supports iOS Project

Does CodeShip Supports iOS projects. I have a GitHub Project and I have enabled the integration with CodeShip. I have test cases written using XCTest Framework. I don't know how to configure CodeShip to execute the test case for successful build.…
Sachin Vas
  • 1,757
  • 12
  • 16
2
votes
1 answer

Please make sure your Heroku API Key is configured correctly in the deployment configuration

I am trying to get loader.io to work with codeship for my heroku app. This is the error that I am receiving: heroku-cli: Installing CLI... 22.45MB/22.45MB The requested API endpoint was not found. Are you using the right HTTP verb (i.e.…
Zach
  • 61
  • 2
2
votes
2 answers

How can I set virtual host in Codeship?

I’m using Codeship to automate a multi-tenancy application. My app need subdomain setting to run acceptance tests using Selenium Web Driver. So, I need to config virtual domain for my app. For example, I need the following virtual domain: …
Chung
  • 947
  • 1
  • 12
  • 22
2
votes
1 answer

Jest JS Test Coverage Data Not Posting to Code Climate from Codeship

I have a Node.js based project in which I am using Jest for .js unit-testing. I have the collectCoverage config setting set to true and can see the test coverage table in my local development runs and when the build is run in Codeship. However, I…
HMartch
  • 728
  • 3
  • 12