diff options
| author | ruki <[email protected]> | 2020-09-12 16:55:09 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-09-12 16:55:09 +0800 |
| commit | a0a492009f956aecacf2483fccdc2a271eca1254 (patch) | |
| tree | c152719e6cd04c8c0555c7aa1aad86499338967d /.github/workflows | |
| parent | 40365b269230f0b36a4023a4f1a0eded47d303cf (diff) | |
Update and rename debian_mips64el.yml to debian_mips.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/debian_mips.yml (renamed from .github/workflows/debian_mips64el.yml) | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/debian_mips64el.yml b/.github/workflows/debian_mips.yml index b7f4e7b36..83a4823ed 100644 --- a/.github/workflows/debian_mips64el.yml +++ b/.github/workflows/debian_mips.yml @@ -1,4 +1,4 @@ -name: Debian (Mips64el) +name: Debian (Mips) on: pull_request: @@ -8,6 +8,9 @@ on: jobs: build: + strategy: + matrix: + arch: [mips, mipsel, mips64, mips64el] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -17,11 +20,11 @@ jobs: - run: | docker run --rm --privileged multiarch/qemu-user-static:register --reset - - uses: docker://multiarch/debian-debootstrap:mips64el-stretch + - uses: docker://multiarch/debian-debootstrap:${{matrix.arch}}-stretch with: args: 'uname -a' - - uses: docker://multiarch/debian-debootstrap:mips64el-stretch + - uses: docker://multiarch/debian-debootstrap:${{matrix.arch}}-stretch with: args: > bash -c |
