diff --git a/.github/actions/configure-x64/action.yml b/.github/actions/configure-x64/action.yml index dacca09820651..ff746791fb950 100644 --- a/.github/actions/configure-x64/action.yml +++ b/.github/actions/configure-x64/action.yml @@ -6,6 +6,9 @@ inputs: skipSlow: default: false required: false + asan: + default: false + required: false runs: using: composite steps: @@ -28,7 +31,7 @@ runs: --enable-gd \ --with-jpeg \ --with-webp \ - ${{ inputs.skipSlow == 'false' && '--with-avif' || '' }} \ + ${{ inputs.asan == 'false' && '--with-avif' || '' }} \ --with-freetype \ --with-xpm \ --enable-exif \ diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index f0a31f9151e90..c0c14a5dfe364 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -147,6 +147,8 @@ jobs: uses: ./.github/actions/setup-mssql - name: apt uses: ./.github/actions/apt-x64 + with: + asan: ${{ matrix.asan && 'true' || 'false' }} - name: System info run: | echo "::group::Show host CPU info"