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
0
votes
1 answer

Store Codeship build ID in variable using GREP

I am trying to use a grep to search a JSON output, I used a curl command to return the data from a particular codeship build and I want to use GREP to store said ID value in a variable. However after I run the command and try to echo out the value…
0
votes
0 answers

PhantomJs on Codeship cannot open url, it always points to "about:blank"

When I run Phantomjs on codeship it always points to about:blank and not the defined url. Seems to be related to --ssl-protocol from what i was reading online but even with this enabled it does not work. When I run the test with PhantomJS on my…
Herr Nentu'
  • 1,438
  • 3
  • 18
  • 49
0
votes
1 answer

Node.js - traceroute equivalent

I have a situation where, for the last 4 months, I've been running deployments via Codeship to MediaTemple Wordpress Managed Hosting for 10 different sites. Then, out of no where, I started receiving this error for all…
Plummer
  • 6,522
  • 13
  • 47
  • 75
0
votes
1 answer

How to integrate scss-lint to run on codeship?

I am working on a project for which we run rspec tests on codeship, along with rubocop for ruby style consistency. We use scss-lint in development and as an editor integration for sass styles. We would like to integrate scss-lint into codeship, so…
killerkiara
  • 101
  • 3
  • 9
0
votes
1 answer

Meteor (1.4.1) checkout not able to run on code ship server

I am using code ship to run some tests and deploy to galaxy. Right now the setup works by running meteor from a git checkout. The following is the setup script: git clone https://github.com/meteor/meteor.git ~/meteor cd ~/meteor && git reset --hard…
camelCaseD
  • 2,483
  • 5
  • 29
  • 44
0
votes
1 answer

How do I use Codeship CI for a ruby project of mine that uses TK?

I have a ruby project that builds perfectly fine on my machine, but I would like to use CI for the project because I am not the only contributor and it is just a good safeguard. I am using codeship and cannot get the project to build because I need…
Eli Sadoff
  • 7,173
  • 6
  • 33
  • 61
0
votes
1 answer

How to reproduce Codeship's non-Docker CI environment locally?

Is there a way to reproduce Codeship's CI environment locally when not using Codeship's Docker support?
Eliot Sykes
  • 9,616
  • 6
  • 50
  • 64
0
votes
2 answers

How can I get Codeship to pass the check_url phase of a nodejs expressjs deployment on Heroku?

So in a nutshell I am trying to: Deploy - https://expressjs.com/en/starter/hello-world.html through Codeship and from Codeship to Heroku. I have been trying to follow the very basic Hello-World express tutorial from…
Jules Moretti
  • 127
  • 1
  • 10
0
votes
1 answer

Codeship restore PostgreSQL database?

I have a small subset of our db as a dump to do integration testing. I restore it using this command: pg_restore --no-acl --no-owner --verbose --create -h localhost -p 5435 -j 4 -U $PG_USER -d test latest.dump The problem is that in the logs I…
user3384741
  • 1,261
  • 3
  • 16
  • 21
0
votes
1 answer

django user inherited model fail

I have a model inhereting from Auth.User model, this way: class UsuarioWeb(User): # more fields And in Codeship when making tests, it fails with this error: django.db.migrations.exceptions.InvalidBasesError: Cannot resolve bases for [] This can…
0
votes
1 answer

What is a proper way to deploy a built version of a project with Codeship

Currently my deployment looks as follows: After committing local changes, I run locally a grunt task to build the project into a /dist folder. Then I push them to bitbucket. e.g. branch name is feature/deposit In Bitbucket I merge feature/deposit…
user2814599
  • 1,060
  • 1
  • 13
  • 27
0
votes
1 answer

py.test timeout/keepalive/heartbeat?

I'm attempting to add a test to my unit tests that is significantly more complicated and takes longer to perform. The idea would be to run this longer test infrequently. However, the test itself takes longer than the 10 minute timeout that codeship…
Owl Owl
  • 181
  • 1
  • 10
0
votes
2 answers

Correct LFTP command to upload only updated files

I am using codeship.io to upload files in a code repository to a shared hosting without SSH. This is the original command, it tooks two hours to complete: lftp -c "open -u $FTP_USER,$FTP_PASSWORD ftp.mydomain.com; set ssl:verify-certificate no;…
mkto
  • 4,584
  • 5
  • 41
  • 65
0
votes
1 answer

Mimic prod environment on CI server

I have to setup CI/CD for my organisation. My requirement is that ci-sever (whether hosted or on-premise ) should mimic the prod environment like operating system , /var/log directories , nginx , php-fpm configuration so on. It gives us more…
voila
  • 1,594
  • 2
  • 19
  • 38
0
votes
1 answer

Execute PostgreSQL statements upon deployment to Elastic Beanstalk

I am working on an application that has source code stored in GitHub, build and test is done by CodeShip, and hosting is done in Amazon Elastic Beanstalk. I'm at a point where seed data is needed on the development database (PostgreSQL in Amazon…