From 95524a6af4bd4750c19ff18f701e5720b04b7f8c Mon Sep 17 00:00:00 2001 From: joaquintides Date: Mon, 27 Jun 2022 19:58:22 +0200 Subject: [PATCH 1/2] bypassed scoped_allocator test for GCC 4.7 and prior --- test/unordered/scoped_allocator.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/unordered/scoped_allocator.cpp b/test/unordered/scoped_allocator.cpp index 08a9397f..a8e02c8b 100644 --- a/test/unordered/scoped_allocator.cpp +++ b/test/unordered/scoped_allocator.cpp @@ -1,12 +1,13 @@ -// Copyright 2021 Christian Mazakas. +// Copyright 2021-2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include #include +#include -#if BOOST_CXX_VERSION <= 199711L +#if BOOST_CXX_VERSION <= 199711L || BOOST_WORKAROUND(BOOST_GCC_VERSION, < 40800) BOOST_PRAGMA_MESSAGE( "scoped allocator adaptor tests only work under C++11 and above") From 5855c67d4dada9e51b58555cb5de7e40b468d1d5 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Mon, 27 Jun 2022 20:35:59 +0200 Subject: [PATCH 2/2] added Drone support to this branch --- .drone.jsonnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 10bfdf2b..6569f585 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -6,7 +6,7 @@ local library = "unordered"; local triggers = { - branch: [ "master", "develop", "feature/*" ] + branch: [ "master", "develop", "feature/*", "bugfix/*" ] }; local ubsan = { UBSAN: '1', UBSAN_OPTIONS: 'print_stacktrace=1' };