Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/actions/configure-x64/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ inputs:
skipSlow:
default: false
required: false
asan:
default: false
required: false
runs:
using: composite
steps:
Expand All @@ -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 \
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading