2021-10-30 03:53:09 +08:00
|
|
|
name: build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
2021-11-04 03:30:30 +08:00
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- 'papers/**'
|
|
|
|
- 'rfcs/**'
|
|
|
|
- '*.md'
|
2021-10-30 03:53:09 +08:00
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- 'papers/**'
|
|
|
|
- 'rfcs/**'
|
|
|
|
- '*.md'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
unix:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu, macos]
|
|
|
|
name: ${{matrix.os}}
|
|
|
|
runs-on: ${{matrix.os}}-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: make test
|
|
|
|
run: |
|
2021-11-12 22:56:25 +08:00
|
|
|
make -j2 config=sanitize werror=1 test
|
2021-10-30 03:53:09 +08:00
|
|
|
- name: make test w/flags
|
|
|
|
run: |
|
2021-11-12 22:56:25 +08:00
|
|
|
make -j2 config=sanitize werror=1 flags=true test
|
2021-10-30 03:53:09 +08:00
|
|
|
- name: make cli
|
|
|
|
run: |
|
2021-11-12 22:56:25 +08:00
|
|
|
make -j2 config=sanitize werror=1 luau luau-analyze # match config with tests to improve build time
|
2021-10-30 03:53:09 +08:00
|
|
|
./luau tests/conformance/assert.lua
|
|
|
|
./luau-analyze tests/conformance/assert.lua
|
|
|
|
|
|
|
|
windows:
|
|
|
|
runs-on: windows-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
arch: [Win32, x64]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: cmake configure
|
2021-11-12 22:56:25 +08:00
|
|
|
run: cmake . -A ${{matrix.arch}} -DLUAU_WERROR=ON
|
2021-10-30 03:53:09 +08:00
|
|
|
- name: cmake test
|
|
|
|
shell: bash # necessary for fail-fast
|
|
|
|
run: |
|
|
|
|
cmake --build . --target Luau.UnitTest Luau.Conformance --config Debug
|
|
|
|
Debug/Luau.UnitTest.exe
|
|
|
|
Debug/Luau.Conformance.exe
|
|
|
|
- name: cmake test w/flags
|
|
|
|
shell: bash # necessary for fail-fast
|
|
|
|
run: |
|
|
|
|
Debug/Luau.UnitTest.exe --fflags=true
|
|
|
|
Debug/Luau.Conformance.exe --fflags=true
|
|
|
|
- name: cmake cli
|
|
|
|
shell: bash # necessary for fail-fast
|
|
|
|
run: |
|
|
|
|
cmake --build . --target Luau.Repl.CLI Luau.Analyze.CLI --config Debug # match config with tests to improve build time
|
|
|
|
Debug/luau tests/conformance/assert.lua
|
|
|
|
Debug/luau-analyze tests/conformance/assert.lua
|
|
|
|
|
|
|
|
coverage:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: install
|
|
|
|
run: |
|
|
|
|
sudo apt install llvm
|
|
|
|
- name: make coverage
|
|
|
|
run: |
|
|
|
|
CXX=clang++-10 make -j2 config=coverage coverage
|
2021-11-02 00:19:54 +08:00
|
|
|
- name: upload coverage
|
|
|
|
uses: coverallsapp/github-action@master
|
|
|
|
with:
|
|
|
|
path-to-lcov: ./coverage.info
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
2021-10-30 03:53:09 +08:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: coverage
|
|
|
|
path: coverage
|