mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
And I'm also wondering what's up with clang-10
This commit is contained in:
parent
c2e0d4ea61
commit
ce0924674d
1 changed files with 16 additions and 0 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -37,6 +37,22 @@ jobs:
|
|||
./luau tests/conformance/assert.lua
|
||||
./luau-analyze tests/conformance/assert.lua
|
||||
|
||||
ubuntu-clang-10:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: make test
|
||||
run: |
|
||||
CXX=clang++-10 make -j3 config=sanitize werror=1 test
|
||||
- name: make test w/flags
|
||||
run: |
|
||||
CXX=clang++-10 make -j3 config=sanitize werror=1 flags=true test
|
||||
- name: make cli
|
||||
run: |
|
||||
CXX=clang++-10 make -j3 config=sanitize werror=1 luau luau-analyze # match config with tests to improve build time
|
||||
./luau tests/conformance/assert.lua
|
||||
./luau-analyze tests/conformance/assert.lua
|
||||
|
||||
ubuntu-clang:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
Loading…
Add table
Reference in a new issue