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

Deploying Angular-fullstack app on Heroku using Codeship

I'm trying to deploy a website via CodeShip unto Heroku. The site is built with Yeoman's Angular-Fullstack generator, which is pushed to GitHub. Codeship detects the push, builds the entire thing and then the trouble start. Angular-Fullstack is set…
Lodybo
  • 467
  • 5
  • 13
2
votes
0 answers

Deploy AWS from Codeship Image

Setup I did the following steps: I created with the IAM Manager (I guess most of the following permissions are not required/redundant): a group called codeship with…
Andi Giga
  • 3,744
  • 9
  • 38
  • 68
2
votes
1 answer

Run meteor tests with Chimp at Codeship CI

I have Meteor project and I want to run my tests with Chimp at Codeship. I have a problem that Meteor project must be started before running Chimp. After starting Meteor, it blocks terminal showing that server si ready at localhost:3000 Usually at…
Jirik
  • 1,435
  • 11
  • 18
2
votes
1 answer

configure codeship to run when non-contributors make pull requests

Default behavior for Codeship appears to be to only run CI against pull requests from existing contributors, not from people outside the organization. How do you change this behavior?
williamcodes
  • 6,317
  • 8
  • 32
  • 55
2
votes
2 answers

Doesn't Codeship support YAML configure file?

Codeship doesn't support YAML confguration file, does it? I can't find any document about it on their Docs page. I try to put some file like codeship.yml or your_config.yml in my repo but it doesn't work. P/S: I know that CircleCI, TravisCI and…
Tuan
  • 2,303
  • 2
  • 25
  • 37
2
votes
0 answers

Codeship : Use Rails Fixtures with protractor

I'm using Codeship to deploy my code. I have a rails app with angularjs Here's my problem, I have e2e tests with protractor. On local my tests are working fine but when I'm trying to deploy my code with codeship, the tests will not passed. I assume…
Kaëris
  • 3,304
  • 2
  • 14
  • 17
2
votes
3 answers

Continuous Integration: Codeship + Gulp (Jasmine)

My Continuous Integration works pretty great using Codeship except one thing: stop deploying and alert us when unit tests are failing. Here is our current commands: npm install npm install bower bower install gulp test gulp build The problem is…
MaximeBernard
  • 1,090
  • 1
  • 19
  • 33
2
votes
1 answer

How do you deploy build artifacts to Heroku from Codeship?

In starting a new project, I put together the skeleton for a Node app that has tests and generates some build artifacts, like asset compilation and compression. I have the tests running in Codeship so successful builds initiate a deploy to Heroku.…
swider
  • 3,374
  • 2
  • 27
  • 40
2
votes
1 answer

Deis deployment doesn't work with codeship

I have a RoR app deployed on Deis and I'm trying to set up Codeship to automatically deploy on Deis. here are the steps I've taken so far: Register codeship account to deis: deis register deis.example.com username: codeship password: password…
Mustafa Abuelfadl
  • 537
  • 1
  • 4
  • 20
2
votes
3 answers

Testing Meteor with Velocity at Codeship

I'm trying to configure a CI infrastructure at Codeship. My local meteor --test command works like charm, but I'm getting a weird error at Codeship. Local: I20141208-12:29:42.602(2)? Started I20141208-12:29:42.602(2)? . I20141208-12:29:42.603(2)?…
Michael Samoylov
  • 2,933
  • 3
  • 25
  • 33
1
vote
0 answers

Selenium::WebDriver::Error::UnknownError: unknown error: session deleted because of page crash on rails application tested on codeship

Using Codeship as an automatic test plateform I have this error that occur only on codeship automatic run, not on my local environment, nor if I run the same test on codeship via ssh debug console : Selenium::WebDriver::Error::UnknownError: …
GPif
  • 543
  • 2
  • 6
  • 22
1
vote
1 answer

Creating the messages by Category table simply with PyLint

By Running the pylint --load-plugins pylint_django ~/src/github.com// ||, it creates this very useful table displaying all the messages types, as well as how many of each my codebase has. As well as a WHOLE LOT of other information. pylint…
Andrew
  • 11
  • 2
1
vote
2 answers

Codeship + Firebase functions:config:set = 404 method not found

Hi wonderful people of stackoverflow! Background I have an Angular 9 application and CI set up with Codeship. This has been running fine until about two weeks ago when suddenly it stopped working after I upgraded from Angular 7. Set up commands: nvm…
William Tonkin-Howe
  • 487
  • 1
  • 3
  • 12
1
vote
0 answers

Codeship Pro/GitHub Trigger build on "Ready For Review" or "PR Title Change"

I'm using Codeship Pro, GitHub and DangerJS to drive CI and dev process in pull requests. Is there a way to trigger codeship to run steps when a PR moves from Draft to Ready for REview? Also would be useful to run something when the PR title…
Gabriel Littman
  • 552
  • 3
  • 13
1
vote
2 answers

Capybara errors in remote environment only

I am trying to automate feature tests using rspec/Capybara in Rails when pushing commits to GitHub. It seems not find the form elements, double checked the ID and tested without the within helper. The tests run and pass without issue when running…