Skip to content

Commit

Permalink
Fix string closure
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland committed Nov 5, 2022
1 parent 050a3d3 commit 596914c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ def main(ctx):
for cxx in clang_10_stds:
result.append(linux_cxx("Ubuntu clang++-10 " + cxx + " " + suite, "clang++-10", packages="clang-10", llvm_os="xenial", llvm_ver="10", buildtype="boost", image="cppalliance/droneubuntu1804:1", environment={'TOOLSET': 'clang', 'COMPILER': 'clang++-10', 'CXXSTD': cxx, 'TEST_SUITE': suite, }, globalenv=globalenv))
for cxx in mac_arm_tests:
result.append(osx_cxx("Clang", "clang++", buildscript="drone", buildtype="boost", xcode_version="14.1", environment={'B2_TOOLSET': 'clang', 'B2_CXXSTD": cxx}, globalenv=globalenv}))
result.append(osx_cxx("gcc-12", "g++-12", buildscript="drone", buildtype="boost", xcode_version="14.1", environment={'B2_TOOLSET': 'gcc-12', 'B2_CXXSTD": cxx}, globalenv=globalenv}))
result.append(osx_cxx("Clang", "clang++", buildscript="drone", buildtype="boost", xcode_version="14.1", environment={'B2_TOOLSET': 'clang', 'B2_CXXSTD': cxx}, globalenv=globalenv}))
result.append(osx_cxx("gcc-12", "g++-12", buildscript="drone", buildtype="boost", xcode_version="14.1", environment={'B2_TOOLSET': 'gcc-12', 'B2_CXXSTD': cxx}, globalenv=globalenv}))

return result

Expand Down

0 comments on commit 596914c

Please sign in to comment.