Fix matrix

This commit is contained in:
Ryan 2021-02-01 12:33:52 +13:00 committed by GitHub
parent 66f192850d
commit 391daace9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,18 +13,19 @@ on:
jobs: jobs:
# This workflow contains a single job called "build" # This workflow contains a single job called "build"
build: build:
# The type of runner that the job will run on
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
matrix: strategy:
include: fail-fast: false
- target=aarch64-linux-musl matrix:
- target=arm-linux-musleabi include:
- target=arm-linux-musleabihf - target: aarch64-linux-musl
- target=i686-linux-musl - target: arm-linux-musleabi
- target=riscv64-linux-musl - target: arm-linux-musleabihf
- target=x86_64-linux-musl - target: i686-linux-musl
- target=x86_64-linux-muslx32 - target: riscv64-linux-musl
- target: x86_64-linux-musl
- target: x86_64-linux-muslx32
steps: steps: