Github: Force using vendored pcre2

It seems an update to the ubuntu image github uses included pcre2, but
only the 64-bit version.

So since we now force a 32-bit fish but don't force the vendored pcre,
it complains.

Simply force the vendored pcre as well as I don't believe it's worth
it to change the pcre2 detection in this case.
This commit is contained in:
Fabian Homborg 2021-04-01 22:40:06 +02:00
parent 16bc170126
commit e19a2f9f85

View file

@ -48,7 +48,7 @@ jobs:
CFLAGS: "-m32" CFLAGS: "-m32"
run: | run: |
mkdir build && cd build mkdir build && cd build
cmake .. cmake -DFISH_USE_SYSTEM_PCRE2=OFF ..
- name: make - name: make
run: | run: |
make make