Closed missinglink closed 3 years ago
there seems to be an issue with running the 'compile' command within the CI env which doesn't exist outside.
the linux 64 binary present in the latest npm release produces a SEGFAULT:
npm
SEGFAULT
./pbf2json.linux-x64 Segmentation fault
..however dowloading the binary with the same name from the repo (which was produced locally from the git commit hook) works perfectly.
git commit
I suspect it's due to running upx within a container, or the version of upx, so this PR disables building the binaries within the CI env.
upx
there seems to be an issue with running the 'compile' command within the CI env which doesn't exist outside.
the linux 64 binary present in the latest
npm
release produces aSEGFAULT
:..however dowloading the binary with the same name from the repo (which was produced locally from the
git commit
hook) works perfectly.I suspect it's due to running
upx
within a container, or the version ofupx
, so this PR disables building the binaries within the CI env.