From a022402ebdddf9d5e4d653ea64077bf7c48cdbcd Mon Sep 17 00:00:00 2001 From: Ilia Bozhinov Date: Thu, 27 Feb 2025 00:30:55 +0100 Subject: [PATCH] ci: enable custom plugin pch for clang --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3dcc02e50..a9a0c5c52 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -39,7 +39,7 @@ jobs: - run: git submodule sync --recursive && git submodule update --init --force --recursive - run: find /usr/bin/ | grep clang - run: (cd subprojects/wlroots && env CC=clang-17 CXX=clang++-17 CXXFLAGS="-stdlib=libc++" LDFLAGS="-fuse-ld=lld -stdlib=libc++" meson build --prefix=/usr && ninja -C build install) - - run: env CC=clang-17 CXX=clang++-17 CXXFLAGS="-stdlib=libc++" LDFLAGS="-fuse-ld=lld -stdlib=libc++" meson build -Db_pch=true -Duse_system_wlroots=enabled --unity on + - run: env CC=clang-17 CXX=clang++-17 CXXFLAGS="-stdlib=libc++" LDFLAGS="-fuse-ld=lld -stdlib=libc++" meson build -Db_pch=true -Dcustom_pch=true -Duse_system_wlroots=enabled --unity on - run: ninja -v -Cbuild - run: ninja -v -Cbuild test test_code_style: