node-murmurhash-native
node-murmurhash-native copied to clipboard
Missing binaries for Node 16, module version 93
Node 16 has gone into LTS, but there are no binaries for it in the release, so using this package with Node 16 requires building locally.
Yep. The problem is that node-pre-gyp-github is no longer working and I need to move to github Actions from Travis CI. Any help would be useful e.g. with examples on publishing binaries on github via github actions.
I will add this to my To Do list to dig into it. I know absolutely nothing about Github Actions personally, but I need to learn about it and I have people I can ask for help.
This weekend I moved a project of mine from using Travis CI to Github Actions for build testing, so now I can say that I have:
- Used Github Actions.
- Translated a project from Travis CI to Github Actions.
I will try to take a look at the Travis CI setup of this project sometime and try my hand at building a working Github Actions replacement . . . sometime.
The goal is to make github action script that will not only build native modules but also publish them (make them downloadable from) as github releases and allow users to get them when they npm install
the module.
If you install the lib inside a dockerfile, check that python is installed before npm ci
RUN apk add --no-cache python3 make g++ && rm -rf /var/cache/apk/*
RUN npm ci
And if you meet this error while a gitlab-runner execution on a kubernetes cluster, I think you can refer to this : https://gitlab.com/gitlab-org/gitlab/-/issues/345402#note_1053968530