Questions tagged [shippable-ci]

Shippable CI is a hosted continuous integration and continuous deployment product.

Shippable CI is a hosted and product.

23 questions
5
votes
1 answer

Nexus 3 do not support npm dist-tags commands

My question is related to this nexus 3 reported issue. Nexus 3 doesn't support npm distags and no fix is announced. We are working with nexus 2 in production and we publish our npm packages using npm dist-tags via Shippable builds pipeline. We have…
jmuhire
  • 2,091
  • 21
  • 19
4
votes
1 answer

How to parse SBT test reports on Shippable?

I have a simple Scala project, build with sbt, tested with JUnit. The project is plugged into Shippable CI and in the CI interface, I can see Tests tab when running a build. Seeing "No test reports exist, skipping test report processing" message and…
David Lukac
  • 728
  • 7
  • 20
2
votes
1 answer

Getting TypeScript error on Shippable but not locally

I have an Angular/TypeScript application that uses Shippable CI/CD. Everything works great normally but now getting a TS error on Shippable, but not when building locally. (same angular, node, and TS versions both locally and shippable) The error…
Joshua Ohana
  • 5,613
  • 12
  • 56
  • 112
2
votes
0 answers

Shippable PHPUnit Testing several classes

If I use Shippable for CI with PHPUnit, I do not know how to have several test-classes at a time. If I put all my tests in 1 class, it works fine and I get the reports and the sequence coverage. But if I want to have 2 test-classes, I don´t get the…
molerat
  • 946
  • 4
  • 15
  • 43
2
votes
1 answer

Shippable Branch Coverage always 0.00%

I am testing phpunit tests with Shippable CI but I always get 0.00% in Branch Coverage while Sequence Coverage is 100%. This is my shippable.yml: language: php php: - 5.4 before_script: - mkdir -p shippable/testresults - mkdir -p…
molerat
  • 946
  • 4
  • 15
  • 43
1
vote
1 answer

Sudden failure on pip install of awsebcli NameError: name 'platform_system' is not defined

I have a Node app that's deployed via Shippable. A few weeks ago my builds started failing without any environmental changes (10/15/19 was last successful build) I'm deploying to Node v 6.11.5, and it's failing on awsebcli install The CI/CD pipeline…
Joshua Ohana
  • 5,613
  • 12
  • 56
  • 112
1
vote
0 answers

Authentication Failed when pushing app to heroku with Shippable

I have set up a simple nodejs app, and I want to get it to deploy to Heroku automatically when I push to github. This is my shippable.yml file: language: node_js node_js: - 0.10.33 build: ci: - echo 'CI running' on_success: - git…
Ryan Fasching
  • 449
  • 2
  • 11
  • 21
1
vote
0 answers

Springboot And AngularIO on ElasticBeansTalk and Shippable

Briefing I'm having some issue while setting up a Continuous Deployment environment for an application built using SpringBoot and Angular IO, using Shippable as CI and Elastic Beanstalk as production environment. The Current Scenario 1) Application…
1
vote
1 answer

Pass Environment Variables from Shippable to Docker

I am using Shippable for two reasons: to automate the build of my docker images and to pass encrypted environment variables. I am able to automate the builds but I can't pass the variables. I start with entering the environment variable to the…
Liam Hanninen
  • 1,525
  • 2
  • 19
  • 37
1
vote
2 answers

What is sequence coverage?

I am using simplecov for code coverage. I have no idea what sequence coverage is. I Googled it but I could not find anything, although I did find information about Branch Coverage. Here is what I see in Shippable CI:
0
votes
0 answers

Shippable "Failed to execute goal org.codehaus.mojo:cobertura-maven-plugin:2.7:instrument"

I am currently doing a software engineering module where we learn about CI and TDD. As an assignment we must create a Java project using maven, JUnit, and Shippable. My files include three java classes (Student, Course, and Module classes) and a…
Mohamed Moustafa
  • 377
  • 4
  • 18
0
votes
0 answers

Setuptools version Python mismatch on Shippable

I can't tell exactly where my problem is arising, but as of about a week ago I've been unable to deploy my Node app via Shippable. I was running an older version of Node when the issue first arose. Since then I've tried to upgrade my Node version to…
Joshua Ohana
  • 5,613
  • 12
  • 56
  • 112
0
votes
1 answer

Chromium: nvm is not compatible with the "npm_config_prefix" environment variable:

We are moving an Angular (Angular, NgRx and Angular Material Starter) based website from CircleCI to Shippable, and I'm now getting these failures: 27 05 2019 14:46:00.036:INFO [karma-server]: Karma v4.0.1 server started at http://0.0.0.0:9876/ 27…
Mauricio Morales
  • 988
  • 1
  • 9
  • 16
0
votes
1 answer

Ginkgo to cobertura and JUnit

I am using Shippable as my CI and my project is based on Go 1.11. All the unit tests are written in BDD style using Ginkgo and Gomega. In my test pipeline, I have something like: gocov test ./... | gocov-xml > shippable/codecoverage/coverage.xml go…
Tejashwi Kalp Taru
  • 2,994
  • 2
  • 20
  • 35
0
votes
1 answer

How to fix "length must be less than 40" error in shippable.yml file?

Shippable CI UI is showing me the following error: ERROR: 1 validation error detected: Value '[if [ develop == master ]; then xxx-xx-prod; else xxx-xx-dev; fi]' at 'environmentNames' failed to satisfy constraint: Member must satisfy constraint:…
ILikeTacos
  • 17,464
  • 20
  • 58
  • 88
1
2