Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run tests with ASAN #706

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-20.04, macos-latest]
os: [ windows-latest, ubuntu-20.04, macos-latest ]
name: Build Server (${{matrix.os}})
runs-on: ${{matrix.os}}
steps:
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Build Tests
run: |
mkdir build && cd build
cmake ..
cmake .. -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DLSP_BUILD_ASAN:BOOL=ON
cmake --build . --target Luau.LanguageServer.Test -j 3

- name: Run Tests
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Build Tool
run: |
mkdir build && cd build
cmake ..
cmake .. -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DLSP_BUILD_ASAN:BOOL=ON
cmake --build . --target Luau.LanguageServer.CLI -j 3

- name: Regenerate Types
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-20.04, windows-latest]
os: [ macos-latest, ubuntu-20.04, windows-latest ]
name: Test Extension (${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
Expand Down
Loading