summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorruki <[email protected]>2022-12-29 00:15:01 +0800
committerruki <[email protected]>2022-12-29 00:15:01 +0800
commit0dc8cd5b958f4f4a6fcfd33e2595e58047768bd5 (patch)
treee7a698add1dc4f1db591b2047fedc900f5158989 /.github/workflows
parent8f23454f5155f29e0f6db1e87448748a3570f515 (diff)
remove mips ci
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/debian_mips64.yml35
1 files changed, 0 insertions, 35 deletions
diff --git a/.github/workflows/debian_mips64.yml b/.github/workflows/debian_mips64.yml
deleted file mode 100644
index 1d092e167..000000000
--- a/.github/workflows/debian_mips64.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: Debian (Mips64)
-
-on:
- pull_request:
- push:
- release:
- types: [published]
-
-jobs:
- build:
- runs-on: ubuntu-latest
-
- concurrency:
- group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-DebianMips64
- cancel-in-progress: true
- 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: >
- bash -c
- "uname -a &&
- apt update &&
- cd /github/workspace &&
- ./scripts/get.sh __local__ &&
- source ~/.xmake/profile &&
- export XMAKE_ROOT=y &&
- export XMAKE_TMPDIR=/tmp &&
- xmake lua -v -D tests/run.lua && xrepo --version"