diff options
| -rw-r--r-- | .github/workflows/ubuntu_arm.yml (renamed from .github/workflows/ubuntu_arm64.yml) | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/.github/workflows/ubuntu_arm64.yml b/.github/workflows/ubuntu_arm.yml index da64b3706..5f5a2493a 100644 --- a/.github/workflows/ubuntu_arm64.yml +++ b/.github/workflows/ubuntu_arm.yml @@ -1,4 +1,4 @@ -name: Ubuntu (Arm64) +name: Ubuntu (Arm) on: pull_request: @@ -17,15 +17,24 @@ jobs: - run: | docker run --rm --privileged multiarch/qemu-user-static:register --reset - - uses: docker://multiarch/ubuntu-core:arm64-bionic + - uses: docker://multiarch/ubuntu-core:armhl-bionic with: - args: 'uname -a' + args: > + bash -c + "uname -a && + apt update && + cd /github/workspace && + ./scripts/get.sh __local__ && + source ~/.xmake/profile && + export XMAKE_ROOT=y && + xmake lua -v -D tests/run.lua" - uses: docker://multiarch/ubuntu-core:arm64-bionic with: args: > bash -c - "apt update && + "uname -a && + apt update && cd /github/workspace && ./scripts/get.sh __local__ && source ~/.xmake/profile && |
