mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
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:
parent
16bc170126
commit
e19a2f9f85
1 changed files with 1 additions and 1 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -48,7 +48,7 @@ jobs:
|
|||
CFLAGS: "-m32"
|
||||
run: |
|
||||
mkdir build && cd build
|
||||
cmake ..
|
||||
cmake -DFISH_USE_SYSTEM_PCRE2=OFF ..
|
||||
- name: make
|
||||
run: |
|
||||
make
|
||||
|
|
Loading…
Reference in a new issue