Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
actboy168 authored Jun 7, 2024
1 parent 9c8c821 commit 553f0df
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,35 @@ jobs:
- run: luamake -notest -sanitize
- run: luamake lua test/glibc-version.lua
- run: luamake test -v
linux:
strategy:
fail-fast: false
matrix:
arch: [aarch64, armv7, riscv64]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
path: luamake
repository: actboy168/luamake
submodules : recursive
- uses: uraimo/run-on-arch-action@v2
with:
arch: ${{ matrix.arch }}
distro: ubuntu20.04
dockerRunArgs: |
--volume "${PWD}:/actboy168"
install: |
apt-get update -q -y
apt-get install -q -y gcc g++ ninja-build
run: |
pushd luamake
./compile/build.sh notest
popd
./luamake/luamake -notest -sanitize
./luamake/luamake lua test/glibc-version.lua
./luamake/luamake test -v
bsd:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit 553f0df

Please sign in to comment.