Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
actboy168 committed May 20, 2024
1 parent 1ec8471 commit 7d3fd0e
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,24 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actboy168/setup-luamake@master
- run: luamake -arch x86 -notest
- run: luamake -arch x86 -sanitize
- run: luamake -arch x86 -notest -sanitize
- run: luamake test -v
windows-x86_64:
name: windows (x86_64)
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actboy168/setup-luamake@master
- run: luamake -arch x86_64 -notest
- run: luamake -arch x86_64 -sanitize
- run: luamake -arch x86_64 -notest -sanitize
- run: luamake test -v
windows-clang:
name: windows (clang)
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actboy168/setup-luamake@master
- run: luamake -cc clang-cl
- run: luamake -cc clang-cl -notest
- run: luamake test -v
windows-mingw:
name: windows (mingw)
runs-on: windows-latest
Expand All @@ -44,32 +45,34 @@ jobs:
working-directory: luamake
run: ./compile/build.sh notest
- shell: msys2 {0}
run: ./luamake/luamake
run: |
./luamake/luamake -notest
./luamake/luamake test -v
macos-x86_64:
name: macos (x86_64)
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actboy168/setup-luamake@master
- run: luamake -arch x86_64 -notest
- run: luamake -arch x86_64 -sanitize
- run: luamake -arch x86_64 -notest -sanitize
- run: luamake test -v
macos-arm64:
name: macos (arm64)
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: actboy168/setup-luamake@master
- run: luamake -arch arm64 -notest
- run: luamake -arch arm64 -sanitize
- run: luamake -arch arm64 -notest -sanitize
- run: luamake test -v
linux-x86_64:
name: linux (x86_64)
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actboy168/setup-luamake@master
- run: luamake -notest
- run: luamake -notest -sanitize
- run: luamake lua test/glibc-version.lua
- run: luamake -sanitize
- run: luamake test -v
bsd:
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -106,4 +109,5 @@ jobs:
cd luamake
./compile/build.sh notest
cd ../bee.lua
./../luamake/luamake
./../luamake/luamake -noetst
./../luamake/luamake test -v

0 comments on commit 7d3fd0e

Please sign in to comment.