Skip to content

Commit 6696c85

Browse files
committed
[ci] add clang19
1 parent 883f666 commit 6696c85

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,14 @@ jobs:
5454
build: unit
5555
build_type: Debug
5656

57+
- name: "Unit clang19 (libc++) c++23"
58+
cxx: "clang++-19"
59+
cc: "clang-19"
60+
pkg: "clang-19 libc++-19-dev libc++abi-19-dev libc++1-19 libc++abi1-19"
61+
cxx_flags: "-std=c++23 -stdlib=libc++"
62+
build: unit
63+
build_type: Debug
64+
5765
- name: "Unit gcc11 Release"
5866
cxx: "g++-11"
5967
cc: "gcc-11"
@@ -127,6 +135,7 @@ jobs:
127135
run: |
128136
sudo apt-add-repository --no-update --yes "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-17 main"
129137
sudo apt-add-repository --no-update --yes "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main"
138+
sudo apt-add-repository --no-update --yes "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-19 main"
130139
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
131140
132141
- name: Configure APT

tests/include/radr/test/gtest_helpers.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22

3+
#include <algorithm>
34
#include <functional>
45
#include <memory>
56
#include <ranges>

0 commit comments

Comments
 (0)