CI: Add Ubuntu Clang task

This feels more like a band-aid solution - it still requires very manual
intervention to get the next builds, but at least this way we don't rely
on whatever Clang/libc++ happens to ship with FreeBSD for the only
libc++ testing. It seems like sanitizer builds don't use libc++, but I'd
rather a dedicated Linux/Clang/libc++ task at least.
This commit is contained in:
Evan Typanski 2024-10-29 14:58:02 -04:00
parent 36af0591a6
commit 04c3c2ec72
2 changed files with 14 additions and 0 deletions

View file

@ -36,6 +36,8 @@ RUN apt-get update && apt-get -y install \
unzip \
wget \
zlib1g-dev \
libc++-dev \
libc++abi-dev \
&& apt autoclean \
&& rm -rf /var/lib/apt/lists/*