File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 7
7
meson_args :
8
8
description : Extra flags to pass to meson
9
9
required : false
10
+ cflags_adds :
11
+ description : Items to append to the CFLAGS variable
12
+ required : false
10
13
runs :
11
14
using : composite
12
15
steps :
27
30
28
31
- name : Build Pandas
29
32
run : |
33
+ export CFLAGS="$CFLAGS ${{ inputs.cflags_adds }}"
30
34
if [[ ${{ inputs.editable }} == "true" ]]; then
31
35
pip install -e . --no-build-isolation -v --no-deps ${{ inputs.meson_args }}
32
36
else
Original file line number Diff line number Diff line change @@ -324,8 +324,7 @@ jobs:
324
324
uses : ./.github/actions/build_pandas
325
325
with :
326
326
meson_args : --config-settings=setup-args="-Db_sanitize=address,undefined"
327
- env :
328
- CFLAGS="$CFLAGS -fno-sanitize-recover=all"
327
+ cflags_adds : -fno-sanitize-recover=all
329
328
330
329
- name : Test (not single_cpu)
331
330
uses : ./.github/actions/run-tests
You can’t perform that action at this time.
0 commit comments