Skip to content

Commit

Permalink
Merge branch 'gha-fix' of https://github.com/cmazakas/liburing
Browse files Browse the repository at this point in the history
* 'gha-fix' of https://github.com/cmazakas/liburing:
  workflows/build.yml: fix sanitizer typo
  • Loading branch information
axboe committed Feb 18, 2025
2 parents 3ea0199 + b16733b commit 334a409
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,13 @@ jobs:
${{matrix.cxx}} --version;
- name: Build
if: ${{matrix.sanitizer == '0'}}
if: ${{matrix.sanitize == '0'}}
run: |
./configure --cc=${{matrix.cc}} --cxx=${{matrix.cxx}};
make -j$(nproc) V=1 CPPFLAGS="-Werror" CFLAGS="$FLAGS" CXXFLAGS="$FLAGS";
- name: Build
if: ${{matrix.sanitizer == '1'}}
if: ${{matrix.sanitize == '1'}}
run: |
./configure --cc=${{matrix.cc}} --cxx=${{matrix.cxx}} --enable-sanitizer;
make -j$(nproc) V=1 CPPFLAGS="-Werror" CFLAGS="$FLAGS" CXXFLAGS="$FLAGS";
Expand Down

0 comments on commit 334a409

Please sign in to comment.