summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2020-09-12 14:32:22 +0800
committerGitHub <[email protected]>2020-09-12 14:32:22 +0800
commit795368464cc23b19bee2915345cd5358c6b14dd8 (patch)
treeb0d45cdd2895d5cd512a3b7612f4f3e8134dc8ca
parentdfe42aa7f3a4795084bec018e72d9246136c710d (diff)
Create debian_mips64el.yml
-rw-r--r--.github/workflows/debian_mips64el.yml33
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"