And I'm also wondering what's up with clang-10

This commit is contained in:
Arseny Kapoulkine 2022-09-29 16:08:44 -07:00
parent c2e0d4ea61
commit ce0924674d

View file

@ -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: