mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Update build.yml
Test both configs to understand Linux impact
This commit is contained in:
parent
3c5034000e
commit
79b7f8d814
1 changed files with 20 additions and 0 deletions
20
.github/workflows/build.yml
vendored
20
.github/workflows/build.yml
vendored
|
@ -27,6 +27,26 @@ jobs:
|
||||||
runs-on: ${{matrix.os}}-latest
|
runs-on: ${{matrix.os}}-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
- name: make test
|
||||||
|
run: |
|
||||||
|
make -j2 config=sanitize werror=1 test
|
||||||
|
- name: make test w/flags
|
||||||
|
run: |
|
||||||
|
make -j2 config=sanitize werror=1 flags=true test
|
||||||
|
- name: make cli
|
||||||
|
run: |
|
||||||
|
make -j2 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
|
||||||
|
|
||||||
|
unix3:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu, macos]
|
||||||
|
name: ${{matrix.os}}-3
|
||||||
|
runs-on: ${{matrix.os}}-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
- name: make test
|
- name: make test
|
||||||
run: |
|
run: |
|
||||||
make -j3 config=sanitize werror=1 test
|
make -j3 config=sanitize werror=1 test
|
||||||
|
|
Loading…
Add table
Reference in a new issue