We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd26f38 commit 2f155beCopy full SHA for 2f155be
.github/workflows/ci.yml
@@ -52,7 +52,15 @@ jobs:
52
token: ${{ secrets.GITHUB_TOKEN }}
53
submodules: recursive
54
55
+ - name: Build Tests (ASAN)
56
+ if: matrix.os != 'windows-latest'
57
+ run: |
58
+ mkdir build && cd build
59
+ cmake .. -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DLSP_BUILD_ASAN:BOOL=ON
60
+ cmake --build . --target Luau.LanguageServer.Test -j 3
61
+
62
- name: Build Tests
63
+ if: matrix.os == 'windows-latest'
64
run: |
65
mkdir build && cd build
66
cmake .. -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DLSP_BUILD_ASAN:BOOL=ON
0 commit comments