Michael-F-Bryan / mdbook-linkcheck

A backend for `mdbook` which will check your links for you.
https://michael-f-bryan.github.io/mdbook-linkcheck/
MIT License
141 stars 29 forks source link

Run release CI on ubuntu 18.04 for better glibc compatibility #65

Closed rukai closed 2 years ago

rukai commented 2 years ago

the version of glibc that the binary gets built with is forwards compatible to new versions of glibc but not backwards compatible.

That means if we build on ubuntu 20.04 we can only run on ubuntu 20.04 and any future versions. But if we build on ubuntu 18.04 we can run on ubuntu 18.04 and ubuntu 20.04 and any future versions.

This PR makes use of this to support more environments.

A particular point of trouble for me was running mdbook-linkcheck on netlify which doesnt seem to let me run on a newer os. image