Skip to content

Commit

Permalink
Add Xcode 13.4 to Drone
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Jan 1, 2024
1 parent 083f1d6 commit 51d3831
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions .drone/drone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 51d3831

Please sign in to comment.