From ce0924674de44f89cf18d766c5a18c35ffeb1af1 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Thu, 29 Sep 2022 16:08:44 -0700 Subject: [PATCH] And I'm also wondering what's up with clang-10 --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 89401037..93fb28c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: