My node.js build stopped working on the gitlab-ci servers 2 days ago. And I don't really understand why. Some more info:
package.json file has not changed when the ci build stopped workingHere is an excerpt from the error-log:
> [email protected] install /builds/vallen-bridge/source/server/node_modules/grpc
> node-pre-gyp install --fallback-to-build --library=static_library
node-pre-gyp WARN Using request for node-pre-gyp https download
node-pre-gyp WARN Tried to download(404): https://node-precompiled-binaries.grpc.io/grpc/v1.16.0/node-v67-linux-x64-glibc.tar.gz
node-pre-gyp WARN Pre-built binaries not found for [email protected] and [email protected] (node-v67 ABI, glibc) (falling back to source compile with node-gyp)
node-pre-gyp WARN Pre-built binaries not installable for [email protected] and [email protected] (node-v67 ABI, glibc) (falling back to source compile with node-gyp)
node-pre-gyp WARN Hit error Connection closed while downloading tarball file
make: Entering directory '/builds/vallen-bridge/source/server/node_modules/grpc/build'
make: Entering directory '/builds/vallen-bridge/source/server/node_modules/grpc/build'
CXX(target) Release/obj.target/grpc/deps/grpc/src/core/lib/surface/init.o
CXX(target) Release/obj.target/grpc/deps/grpc/src/core/lib/surface/init.o
rm: cannot remove './Release/.deps/Release/obj.target/grpc/deps/grpc/src/core/lib/surface/init.o.d.raw': No such file or directory
grpc.target.mk:470: recipe for target 'Release/obj.target/grpc/deps/grpc/src/core/lib/surface/init.o' failed
make: *** [Release/obj.target/grpc/deps/grpc/src/core/lib/surface/init.o] Error 1
make: Leaving directory '/builds/vallen-bridge/source/server/node_modules/grpc/build'
gyp ERR! build error
It seems that grpc binaries cannot be downloaded and as a fallback the system tries to built the package from source which also fails. grpc is required by firebase-admin:
npm ls grpc
`-- [email protected]
`-- @google-cloud/[email protected]
`-- [email protected]
`-- [email protected]
Any idea why this could happen or ideas for a workaroun?
i.e. the version is configured as "firebase-admin": "^6.1.0", in my package.json, so there should not be any breaking changes, right?
as mentioned by @itaied this is an issue with grpc on node 11: grpc#594
the workaround for now is to use node 10: i.e. at the start of .gitlab-ci.yml:
image: node:10
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With