mirror of
https://github.com/boostorg/endian.git
synced 2025-07-30 12:37:24 +02:00
Update .drone.jsonnet
This commit is contained in:
@ -96,14 +96,6 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
|
|||||||
};
|
};
|
||||||
|
|
||||||
[
|
[
|
||||||
linux_pipeline(
|
|
||||||
"Linux 14.04 GCC 4.4",
|
|
||||||
"cppalliance/droneubuntu1404:1",
|
|
||||||
{ TOOLSET: 'gcc', COMPILER: 'g++-4.4', CXXSTD: '0x' },
|
|
||||||
"g++-4.4",
|
|
||||||
[ "ppa:ubuntu-toolchain-r/test" ],
|
|
||||||
),
|
|
||||||
|
|
||||||
linux_pipeline(
|
linux_pipeline(
|
||||||
"Linux 14.04 GCC 4.6 32/64",
|
"Linux 14.04 GCC 4.6 32/64",
|
||||||
"cppalliance/droneubuntu1404:1",
|
"cppalliance/droneubuntu1404:1",
|
||||||
@ -163,17 +155,31 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
|
|||||||
),
|
),
|
||||||
|
|
||||||
linux_pipeline(
|
linux_pipeline(
|
||||||
"Linux 22.04 Clang 14 UBSAN",
|
"Linux 23.04 GCC 13 32/64",
|
||||||
"cppalliance/droneubuntu2204:1",
|
"cppalliance/droneubuntu2304:1",
|
||||||
{ TOOLSET: 'clang', COMPILER: 'clang++-14', CXXSTD: '11,14,17,20' } + ubsan,
|
{ TOOLSET: 'gcc', COMPILER: 'g++-13', CXXSTD: '11,14,17,20,2b', ADDRMD: '32,64' },
|
||||||
"clang-14",
|
"g++-13-multilib",
|
||||||
),
|
),
|
||||||
|
|
||||||
linux_pipeline(
|
linux_pipeline(
|
||||||
"Linux 22.04 Clang 14 ASAN",
|
"Linux 22.04 Clang 15 UBSAN",
|
||||||
"cppalliance/droneubuntu2204:1",
|
"cppalliance/droneubuntu2204:1",
|
||||||
{ TOOLSET: 'clang', COMPILER: 'clang++-14', CXXSTD: '11,14,17,20' } + asan,
|
{ TOOLSET: 'clang', COMPILER: 'clang++-15', CXXSTD: '11,14,17,20,2b' } + ubsan,
|
||||||
"clang-14",
|
"clang-15",
|
||||||
|
),
|
||||||
|
|
||||||
|
linux_pipeline(
|
||||||
|
"Linux 22.04 Clang 15 ASAN",
|
||||||
|
"cppalliance/droneubuntu2204:1",
|
||||||
|
{ TOOLSET: 'clang', COMPILER: 'clang++-15', CXXSTD: '11,14,17,20,2b' } + asan,
|
||||||
|
"clang-15",
|
||||||
|
),
|
||||||
|
|
||||||
|
linux_pipeline(
|
||||||
|
"Linux 23.04 Clang 16",
|
||||||
|
"cppalliance/droneubuntu2304:1",
|
||||||
|
{ TOOLSET: 'clang', COMPILER: 'clang++-16', CXXSTD: '11,14,17,20,2b' },
|
||||||
|
"clang-16",
|
||||||
),
|
),
|
||||||
|
|
||||||
macos_pipeline(
|
macos_pipeline(
|
||||||
@ -186,6 +192,18 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
|
|||||||
{ TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '11,14,1z' } + asan,
|
{ TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '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_pipeline(
|
||||||
"Windows VS2017 msvc-14.1",
|
"Windows VS2017 msvc-14.1",
|
||||||
"cppalliance/dronevs2017",
|
"cppalliance/dronevs2017",
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
# https://www.boost.org/LICENSE_1_0.txt
|
# https://www.boost.org/LICENSE_1_0.txt
|
||||||
|
|
||||||
set -ex
|
set -ex
|
||||||
|
export PATH=~/.local/bin:/usr/local/bin:$PATH
|
||||||
|
|
||||||
DRONE_BUILD_DIR=$(pwd)
|
DRONE_BUILD_DIR=$(pwd)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user