shesek / spark-wallet

⚡️ A minimalistic wallet GUI for c-lightning, accessible over the web or through mobile and desktop apps.
MIT License
344 stars 77 forks source link

fix: CI install recent openjdk-8 deb9u1 version #163

Closed m-schmoock closed 3 years ago

m-schmoock commented 3 years ago

Currently CI fails with:

E: Version '8u265-b01-0+deb9u1' for 'openjdk-8-jdk-headless' was not found
The command '/bin/sh -c apt-get install -y --no-install-recommends openjdk-8-jdk-headless=8u265-b01-0+deb9u1' returned a non-zero code: 100

This patch updates this artifact to recent version: 8u272-b10-0+deb9u1 Alternatively we could remove the specific opendjdk8 version and leave this to the debian maintainers to give us a recent fixed one.

Addresses broken CI build of https://github.com/shesek/spark-wallet/pull/162

shesek commented 3 years ago

I'm using fixed package versions to improve reproducibility, which does result in these errors showing up from time to time until I update the packages. This isn't ideal, but seems better than grabbing whatever the latest version is.

Thanks for the fix!