diff options
| -rw-r--r-- | .github/workflows/debian_mips64el.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/debian_mips64el.yml b/.github/workflows/debian_mips64el.yml new file mode 100644 index 000000000..b7f4e7b36 --- /dev/null +++ b/.github/workflows/debian_mips64el.yml @@ -0,0 +1,33 @@ +name: Debian (Mips64el) + +on: + pull_request: + push: + release: + types: [published] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + submodules: true + + - run: | + docker run --rm --privileged multiarch/qemu-user-static:register --reset + + - uses: docker://multiarch/debian-debootstrap:mips64el-stretch + with: + args: 'uname -a' + + - uses: docker://multiarch/debian-debootstrap:mips64el-stretch + with: + args: > + bash -c + "apt update && + cd /github/workspace && + ./scripts/get.sh __local__ && + source ~/.xmake/profile && + export XMAKE_ROOT=y && + xmake lua -v -D tests/run.lua" |
