You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we claim to support g++-4.8 and clang-3.4 as minimum compiler versions (among others). Googletest, on which we depend for testing (but not in general) increased their minimum support to g++-5 and clang-5.
The oldest LTS version of ubuntu we want to support is trusty (14.04) which isn't EOL until April 2022. Out of the box you can get g++-4.8 and clang-3.6.
So far I've implemented #2 above but not changed the documented policy. Our github actions now build on ubuntu-14.04 vanilla, but run tests on supported compilers.
Currently, we claim to support
g++-4.8
andclang-3.4
as minimum compiler versions (among others). Googletest, on which we depend for testing (but not in general) increased their minimum support tog++-5
andclang-5
.The oldest LTS version of ubuntu we want to support is trusty (14.04) which isn't EOL until April 2022. Out of the box you can get
g++-4.8
andclang-3.6
.I noticed this while trying to set up an ubuntu 14.04 CI build
So we have a couple of options:
I'd really like to do 2, but i'm not sure of the safety of not having runnable tests and maybe we should just jump straight to 1.
Thoughts?
The text was updated successfully, but these errors were encountered: