aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Giessen <charles@lunarg.com>2024-03-16 11:14:14 -0500
committerCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>2024-03-16 11:32:12 -0500
commit079f51c5082585f2f4faaf1fdcbc5b6a6f4d79ce (patch)
tree8826432140fc72b75b03c96cf8c6ad7166860a36
parentb01c881e955072475fda4f557bd5ffe01dfcda45 (diff)
downloadusermoji-079f51c5082585f2f4faaf1fdcbc5b6a6f4d79ce.tar.xz
ci: Disable Address Sanitizer in actions runs
Github actions appears to be having a fatal bug that is preventing ASAN workflows from succeeding. Either the build fails or tests time out, it needs to be disabled for the time being.
-rw-r--r--.github/workflows/tools.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml
index ebc10a56..6baf1f03 100644
--- a/.github/workflows/tools.yml
+++ b/.github/workflows/tools.yml
@@ -84,7 +84,7 @@ jobs:
-D BUILD_WERROR=ON \
-D INSTALL_ICD=ON \
-D BUILD_TESTS=ON \
- -D ENABLE_ADDRESS_SANITIZER=ON
+ -D ENABLE_ADDRESS_SANITIZER=OFF # Re-enable when github CI doesn't have fatal issues
env:
CC: ${{matrix.cc}}
CXX: ${{matrix.cxx}}