Skip to content

Commit

Permalink
Disable CI for GCC 5 and 6
Browse files Browse the repository at this point in the history
They can't compile the new constexpr decomposer because
`ITransientExpression` has a defaulted virtual destructor. We could
instead drop the virtual destructor - it only exists to silence
static analysis tools complaining about having virtual functions
without virtual destructor - but GCC 5 and 6 are positively ancient,
so we drop them instead.
  • Loading branch information
horenmar committed Feb 11, 2024
1 parent d937427 commit bbba3d8
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/linux-simple-builds.yml
Expand Up @@ -9,8 +9,6 @@ jobs:
strategy:
matrix:
cxx:
- g++-5
- g++-6
- g++-7
- g++-8
- g++-9
Expand All @@ -23,10 +21,6 @@ jobs:
build_type: [Debug, Release]
std: [14]
include:
- cxx: g++-5
other_pkgs: g++-5
- cxx: g++-6
other_pkgs: g++-6
- cxx: g++-7
other_pkgs: g++-7
- cxx: g++-8
Expand Down

0 comments on commit bbba3d8

Please sign in to comment.