Skip to content

Commit

Permalink
Disabling the post-C++17 Clang+libstdc++ Drone builds. That combinati…
Browse files Browse the repository at this point in the history
…on will

not work when concepts are in use until Clang 16 at the earliest.  See:
llvm/llvm-project#44178 (comment)
  • Loading branch information
tzlaine committed Mar 28, 2024
1 parent dbfc8da commit 294d84f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ def main(ctx):
return [
job(compiler='clang-10', cxxstd='17', os='ubuntu-18.04'),
job(compiler='clang-11', cxxstd='17', os='ubuntu-22.04'),
job(compiler='clang-12', cxxstd='17,20', os='ubuntu-22.04'),
job(compiler='clang-13', cxxstd='17,20,2b', os='ubuntu-22.04'),
job(compiler='clang-14', cxxstd='17,20,2b', os='ubuntu-22.04'),
job(compiler='clang-15', cxxstd='17,20,2b', os='ubuntu-22.04', add_llvm=True),
job(compiler='clang-12', cxxstd='17', os='ubuntu-22.04'),
job(compiler='clang-13', cxxstd='17', os='ubuntu-22.04'),
job(compiler='clang-14', cxxstd='17', os='ubuntu-22.04'),
job(compiler='clang-15', cxxstd='17', os='ubuntu-22.04', add_llvm=True),

job(compiler='gcc-9', cxxstd='17', os='ubuntu-18.04'),
job(compiler='gcc-10', cxxstd='17,20', os='ubuntu-22.04'),
Expand Down

0 comments on commit 294d84f

Please sign in to comment.