From 46c714a87b01fc4a393c602e33d2e5bbcb776ea3 Mon Sep 17 00:00:00 2001 From: Vladimir Dubrovin <3proxy@3proxy.ru> Date: Fri, 27 Mar 2026 18:21:23 +0300 Subject: [PATCH] test PCRE on MacOS --- .github/workflows/c-cpp.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 9eaa5d3..6e0c069 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -32,6 +32,9 @@ jobs: - name: Mac libraries if: ${{ startsWith(matrix.target, 'macos') }} run: brew install pcre + - name: Test Mac PCRE + if: ${{ startsWith(matrix.target, 'macos') }} + run: echo "#include \n int main(){return 0;}" | cc -x c -l pcre -o testpcre - - name: ln Mac if: ${{ startsWith(matrix.target, 'macos') }} run: ln -s Makefile.FreeBSD Makefile