From d5bbd1ccda180d670810bc0c0fdd496d71d58414 Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Thu, 9 Apr 2020 23:17:45 +0300 Subject: [PATCH] Update tests.yml --- .github/workflows/tests.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 506c3e0..d3f2daf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -206,26 +206,34 @@ jobs: ./run-wasi-test.py build-cross-qemu: - name: build-cross-qemu-${{ matrix.TARGET }} - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest + name: build-cross-qemu-${{ matrix.target }} timeout-minutes: 10 - + strategy: matrix: - os: [ubuntu-latest, ubuntu-latest] + target: [arm, armhf, aarch64, mipsel] include: - - os: ubuntu-latest - TARGET: arm + - target: arm TOOLCHAIN: gcc-arm-linux-gnueabi COMPILER: arm-linux-gnueabi-gcc QEMU: qemu-arm-static - - os: ubuntu-latest - TARGET: armhf + - target: armhf TOOLCHAIN: gcc-arm-linux-gnueabihf COMPILER: arm-linux-gnueabihf-gcc QEMU: qemu-arm-static + - target: aarch64 + TOOLCHAIN: gcc-aarch64-linux-gnu + COMPILER: aarch64-linux-gnu-gcc + QEMU: qemu-aarch64-static + + - target: mipsel + TOOLCHAIN: gcc-mipsel-linux-gnu + COMPILER: mipsel-linux-gnu-gcc + QEMU: qemu-mipsel-static + steps: - uses: actions/checkout@v1 - name: Install prerequisites