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 11name : apt
2+ inputs :
3+ asan :
4+ default : false
5+ required : false
26runs :
37 using : composite
48 steps :
3943 libsqlite3-dev \
4044 libsqlite3-mod-spatialite \
4145 libwebp-dev \
42- libavif-dev \
46+ ${{ inputs.asan == 'false' && ' libavif-dev' || '' }} \
4347 libonig-dev \
4448 libcurl4-openssl-dev \
4549 libxml2-dev \
Original file line number Diff line number Diff line change 2828 --enable-gd \
2929 --with-jpeg \
3030 --with-webp \
31- --with-avif \
31+ ${{ inputs.skipSlow == 'false' && ' --with-avif' || '' }} \
3232 --with-freetype \
3333 --with-xpm \
3434 --enable-exif \
Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ jobs:
162162 ${{ matrix.configuration_parameters }}
163163 --${{ matrix.debug && 'enable' || 'disable' }}-debug
164164 --${{ matrix.zts && 'enable' || 'disable' }}-zts
165+ asan : ${{ matrix.asan && 'true' || 'false' }}
165166 - name : make
166167 run : make -j$(/usr/bin/nproc) >/dev/null
167168 - name : make install
You can’t perform that action at this time.
0 commit comments