boldtrn / graphhopper-maps-capacitor

Capacitor Wrapper for GraphHopper Maps
Apache License 2.0
18 stars 1 forks source link

F-Droid build failed #35

Closed linsui closed 4 months ago

linsui commented 4 months ago

https://gitlab.com/linsui/fdroiddata/-/jobs/7165447286 Could you please take a look? Thanks!

karussell commented 4 months ago

Thanks. Looks like a strange error. Have changed our version to 2.0.2 - maybe this was the problem.

What npm version do we get with apt there?

For the previous GH maps version 1.5.1 we used a specific node version:

- curl -Lo node.tar.gz https://nodejs.org/dist/v16.20.1/node-v16.20.1-linux-x64.tar.gz
- echo "c76d2aabd2d02542505fd24e18876fb8515e23638531249277272def42ab54e3 node.tar.gz" | sha256sum -c -
- tar xzf node.tar.gz --strip-components=1 -C /usr/local/

We'd to migrate to v20.14.0 - so should we use the following?

- curl -Lo node.tar.gz https://nodejs.org/dist/v20.14.0/node-v20.14.0-linux-x64.tar.gz
- echo "5b9bf40cfc7c21de14a1b4c367650e3c96eb101156bf9368ffc2f947414b6581 node.tar.gz" | sha256sum -c -
- tar xzf node.tar.gz --strip-components=1 -C /usr/local/

Or is is apt already using a recent enough version?

linsui commented 4 months ago

The nodejs in bookworm is 18.19.0. Does this work?

linsui commented 4 months ago

It works. :)

karussell commented 4 months ago

Nice! And thank you for the fast report!