apache / arrow

Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing
https://arrow.apache.org/
Apache License 2.0
14.44k stars 3.52k forks source link

[JS] Run less comprehensive every-commit build, relegate multi-target builds perhaps to nightlies #23098

Open asfimport opened 5 years ago

asfimport commented 5 years ago

The JavaScript CI build is taking 25-30 minutes nowadays. This could be abbreviated by testing fewer deployment targets. We obviously still need to test all the deployment targets but we could do that nightly instead of on every commit

Reporter: Wes McKinney / @wesm

Note: This issue was originally created as ARROW-6759. Please see the migration documentation for further details.

asfimport commented 5 years ago

Wes McKinney / @wesm: [~paul.e.taylor] for ideas about how to do this in a not-annoying way. Setting up a nightly build is not a big deal

asfimport commented 5 years ago

Paul Taylor / @trxcllnt: Yeah no sweat, we can change the ci/travis_script_js.sh build and test commands to only test the UMD builds. Historically these have the most issues since they're minified, so if they pass everything should pass:


npm run build -- -m umd -t es5 -t es2015 -t esnext
npm test -- -m umd -t es5 -t es2015 -t esnext
asfimport commented 4 years ago

Wes McKinney / @wesm: GHA is taking about 25min but as it's running more promptly there seems less urgency to address this for now