diff --git a/.drone.jsonnet b/.drone.jsonnet index 999f200..bdbb174 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -286,6 +286,18 @@ local windows_pipeline(name, image, environment, arch = "amd64") = { TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '03,11,14,1z' } + asan, ), + macos_pipeline( + "MacOS 12.4 Xcode 13.4.1 UBSAN", + { TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '11,14,17,20,2b' } + ubsan, + xcode_version = "13.4.1", osx_version = "monterey", arch = "arm64", + ), + + macos_pipeline( + "MacOS 12.4 Xcode 13.4.1 ASAN", + { TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '11,14,17,20,2b' } + asan, + xcode_version = "13.4.1", osx_version = "monterey", arch = "arm64", + ), + windows_pipeline( "Windows VS2015 msvc-14.0", "cppalliance/dronevs2015", diff --git a/.drone/drone.sh b/.drone/drone.sh index 7172f7f..2f2125d 100755 --- a/.drone/drone.sh +++ b/.drone/drone.sh @@ -5,6 +5,7 @@ # https://www.boost.org/LICENSE_1_0.txt set -ex +export PATH=~/.local/bin:/usr/local/bin:$PATH DRONE_BUILD_DIR=$(pwd) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 3061b83..6607ea2 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -43,7 +43,7 @@ lib lib3_throw : lib3_throw.cpp : LIB3_SOURCE=1 shared:LIB lib lib4_throw : lib4_throw.cpp : LIB4_SOURCE=1 shared:LIB4_DYN_LINK=1 : : shared:LIB4_DYN_LINK=1 ; run throw_from_library_test.cpp lib1_throw lib2_throw lib3_throw lib4_throw : : : static : throw_from_library_static ; -run throw_from_library_test.cpp lib1_throw lib2_throw lib3_throw lib4_throw : : : shared : throw_from_library_shared ; +run throw_from_library_test.cpp lib1_throw lib2_throw lib3_throw lib4_throw : : : shared darwin,norecover:no : throw_from_library_shared ; run throw_exception_nx_test.cpp : : : off ; run throw_exception_nx_test2.cpp : : : off ;