Orgad Shaneh

Results 411 comments of Orgad Shaneh

Links with the standard math lib. The functions `_isnan` and `_isinf` are used in jansson.

I did this 3 years ago, I no longer remember. :) Just stumbled upon the repo on my disk and remembered.

Looks like the existing binaries are linked with glibc, so it should be needed, yes.

hmm... Actually it looks like the original build works on alpine as well. I wonder how it works... 🤔 I guess you can revert the alpine parts of this change...

I tested with 3.2.3 without installed build tools. I verified that the binary was *not* linked with musl, and that it was not built locally (the modification timestamp of the...

No, it does use the native bindings. Here: ``` docker run -w /app --rm -it node:18.19.0-alpine3.19 ash  ✔  1h 8m 53s  orgads@siplenovo  20:27:58 /app # npm...

jest support for ESM is experimental, and you must run node with `--experimental-vm-modules` for it to work. See https://jestjs.io/docs/ecmascript-modules

Workaround until there are native images: https://enlear.academy/run-amd64-docker-images-on-an-arm-computer-208929004510 ``` docker run --privileged --rm tonistiigi/binfmt --install amd64 ``` Add `platform: linux/amd64` for each reportportal image in docker-compose. DISCLAIMER: It works *very* slow,...