Shippable / support

Shippable SaaS customers can report issues and feature requests in this repository
100 stars 28 forks source link

All build failing since 03/26/2020 #5117

Open EltonWhybrow opened 4 years ago

EltonWhybrow commented 4 years ago

All builds starting failing after 03/26/2020 including if I run previously successful build.

Could anyone shed any light on what I missing? Thanks

Error in the console is: nvm install "0.11" Version '0.11' not found - try nvm ls-remote to browse available versions.

HAVE TRIED OTHER VERSIONS and all failing the same.

a-murphy commented 4 years ago

It looks like you are using a very old build image and it no longer has any certificates that are able to get the list of versions from NodeJS. Since you are using the shippable/minv2 image, you probably have the old format YML, in which case I would suggest specifying a new image in the YML in the format build_image: <image_name>:<tag>, for example: build_image: drydock/u16nodall:v7.2.4, at the root level of your shippable.yml. Unfortunately, we don't have any images with 0.11 pre-installed, but a newer image should be able to install 0.11 when a build runs. The list of versions pre-installed in each image are listed here.

EltonWhybrow commented 4 years ago

Thanks a bunch, @a-murphy after your workaround and a couple more tweaks were back on track. Much appreciate the time.