File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 66
66
with :
67
67
python-version : ' 3.9.14'
68
68
architecture : ' x64'
69
+ - name : Install pcregrep
70
+ run : |
71
+ if [[ -z "$(which pcregrep)" ]]; then
72
+ brew install pcre
73
+ else
74
+ echo "$(which pcregrep) already installed."
75
+ fi
69
76
- name : Install Dependencies
70
77
run : |
71
78
INSTALL_FLAGS=()
Original file line number Diff line number Diff line change @@ -121,6 +121,15 @@ jobs:
121
121
with :
122
122
fetch-depth : 0
123
123
124
+ - name : Install pcregrep
125
+ if : runner.os == 'macOS'
126
+ run : |
127
+ if [[ -z "$(which pcregrep)" ]]; then
128
+ brew install pcre
129
+ else
130
+ echo "$(which pcregrep) already installed."
131
+ fi
132
+
124
133
- name : Setup Build Environment
125
134
uses : mamba-org/provision-with-micromamba@main
126
135
with :
You can’t perform that action at this time.
0 commit comments