File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : apt
2
+ inputs :
3
+ asan :
4
+ default : false
5
+ required : false
2
6
runs :
3
7
using : composite
4
8
steps :
39
43
libsqlite3-dev \
40
44
libsqlite3-mod-spatialite \
41
45
libwebp-dev \
42
- libavif-dev \
46
+ ${{ inputs.asan == 'false' && ' libavif-dev' || '' }} \
43
47
libonig-dev \
44
48
libcurl4-openssl-dev \
45
49
libxml2-dev \
Original file line number Diff line number Diff line change 28
28
--enable-gd \
29
29
--with-jpeg \
30
30
--with-webp \
31
- --with-avif \
31
+ ${{ inputs.skipSlow == 'false' && ' --with-avif' || '' }} \
32
32
--with-freetype \
33
33
--with-xpm \
34
34
--enable-exif \
Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ jobs:
162
162
${{ matrix.configuration_parameters }}
163
163
--${{ matrix.debug && 'enable' || 'disable' }}-debug
164
164
--${{ matrix.zts && 'enable' || 'disable' }}-zts
165
+ asan : ${{ matrix.asan && 'true' || 'false' }}
165
166
- name : make
166
167
run : make -j$(/usr/bin/nproc) >/dev/null
167
168
- name : make install
You can’t perform that action at this time.
0 commit comments