mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Work around ASLR+ASAN compatibility issues
vm.mmap_rnd_bits has been recently changed to 32 on GHA, which triggers issues in ASAN builds that spuriously fail on startup. The fix requires a more recent clang/gcc than the agents have available (clang 17, not sure what GCC version), so for now we need to work around this by restricting the ASLR randomness.
This commit is contained in:
parent
9aa82c6fb9
commit
556031c027
1 changed files with 3 additions and 0 deletions
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
|
@ -25,6 +25,9 @@ jobs:
|
|||
runs-on: ${{matrix.os.version}}
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: work around ASLR+ASAN compatibility
|
||||
run: sudo sysctl -w vm.mmap_rnd_bits=28
|
||||
if: matrix.os.name == 'ubuntu'
|
||||
- name: make tests
|
||||
run: |
|
||||
make -j2 config=sanitize werror=1 native=1 luau-tests
|
||||
|
|
Loading…
Add table
Reference in a new issue