We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 624d0a8 + 2580883 commit d54b7c7Copy full SHA for d54b7c7
.github/actions/configure-x64/action.yml
@@ -6,6 +6,9 @@ inputs:
6
skipSlow:
7
default: false
8
required: false
9
+ asan:
10
+ default: false
11
+ required: false
12
runs:
13
using: composite
14
steps:
@@ -28,7 +31,7 @@ runs:
28
31
--enable-gd \
29
32
--with-jpeg \
30
33
--with-webp \
- ${{ inputs.skipSlow == 'false' && '--with-avif' || '' }} \
34
+ ${{ inputs.asan == 'false' && '--with-avif' || '' }} \
35
--with-freetype \
36
--with-xpm \
37
--enable-exif \
.github/workflows/nightly.yml
@@ -147,6 +147,8 @@ jobs:
147
uses: ./.github/actions/setup-mssql
148
- name: apt
149
uses: ./.github/actions/apt-x64
150
+ with:
151
+ asan: ${{ matrix.asan && 'true' || 'false' }}
152
- name: System info
153
run: |
154
echo "::group::Show host CPU info"
0 commit comments