MikeMcl / bignumber.js

A JavaScript library for arbitrary-precision decimal and non-decimal arithmetic
http://mikemcl.github.io/bignumber.js
MIT License
6.64k stars 741 forks source link

Update .travis.yml #275

Closed santosh653 closed 3 years ago

santosh653 commented 3 years ago

This PR is for PowerPC CPU support on Travis.

MikeMcl commented 3 years ago

Wouldn't that mean testing was only done on Power PC?

arch:
  - amd64
  - ppc64le

Perhaps arm64 also, but is there any documentation confirming that Travis can run Node.js on these architectures without any further configuration?

santosh653 commented 3 years ago

Adding power support ppc64le This is part of the Ubuntu distribution for ppc64le. This helps us simplify testing later when distributions are re-building and re-releasing. For more info tag @gerrith3.

gerrith3 commented 3 years ago

@MikeMcl we have added full support to production travis-ci.com for ppc64le backends. We should have very close to full parity between ppc64le and amd64 images. We do not support some older version of, say, python, but in general everything should be there.

santosh653 commented 3 years ago

The build is successful on both arch: ppc64le & amd64, please refer to below link. https://travis-ci.com/github/santosh653/bignumber.js

MikeMcl commented 3 years ago

Thank you.