We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb9b604 commit 7e628b0Copy full SHA for 7e628b0
.github/workflows/tools.yml
@@ -75,6 +75,9 @@ jobs:
75
uses: hendrikmuhs/ccache-action@v1.2
76
with:
77
key: ${{ runner.os }}-${{ matrix.config }}-${{ matrix.cc }}-${{matrix.cube_wsi}}
78
+ # This is to combat a bug when using 6.6 linux kernels with thread/address sanitizer
79
+ # https://github.com/google/sanitizers/issues/1716
80
+ - run: sudo sysctl vm.mmap_rnd_bits=28
81
- name: Configure
82
run: |
83
cmake -S. -B build -G "Ninja" \
@@ -84,7 +87,7 @@ jobs:
84
87
-D BUILD_WERROR=ON \
85
88
-D INSTALL_ICD=ON \
86
89
-D BUILD_TESTS=ON \
- -D ENABLE_ADDRESS_SANITIZER=OFF # Re-enable when github CI doesn't have fatal issues
90
+ -D ENABLE_ADDRESS_SANITIZER=ON
91
env:
92
CC: ${{matrix.cc}}
93
CXX: ${{matrix.cxx}}
0 commit comments