From 355a82db542dd66539fc0497aad854cdfa668cbe Mon Sep 17 00:00:00 2001 From: Martin Nordholts Date: Sat, 28 Aug 2021 14:03:55 +0200 Subject: [PATCH] CICD: Sort build matrix by target --- .github/workflows/CICD.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 8f2455c7..5e816521 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -101,17 +101,17 @@ jobs: fail-fast: false matrix: job: - - { os: ubuntu-20.04, target: arm-unknown-linux-gnueabihf , use-cross: true } - - { os: ubuntu-20.04, target: arm-unknown-linux-musleabihf, use-cross: true } - - { os: ubuntu-20.04, target: aarch64-unknown-linux-gnu , use-cross: true } - - { os: ubuntu-20.04, target: i686-unknown-linux-gnu , use-cross: true } - - { os: ubuntu-20.04, target: i686-unknown-linux-musl , use-cross: true } - - { os: ubuntu-20.04, target: x86_64-unknown-linux-gnu } - - { os: ubuntu-20.04, target: x86_64-unknown-linux-musl , use-cross: true } - - { os: macos-10.15 , target: x86_64-apple-darwin } - - { os: windows-2019, target: i686-pc-windows-msvc } - - { os: windows-2019, target: x86_64-pc-windows-gnu } - - { os: windows-2019, target: x86_64-pc-windows-msvc } + - { target: aarch64-unknown-linux-gnu , os: ubuntu-20.04, use-cross: true } + - { target: arm-unknown-linux-gnueabihf , os: ubuntu-20.04, use-cross: true } + - { target: arm-unknown-linux-musleabihf, os: ubuntu-20.04, use-cross: true } + - { target: i686-pc-windows-msvc , os: windows-2019 } + - { target: i686-unknown-linux-gnu , os: ubuntu-20.04, use-cross: true } + - { target: i686-unknown-linux-musl , os: ubuntu-20.04, use-cross: true } + - { target: x86_64-apple-darwin , os: macos-10.15 } + - { target: x86_64-pc-windows-gnu , os: windows-2019 } + - { target: x86_64-pc-windows-msvc , os: windows-2019 } + - { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04 } + - { target: x86_64-unknown-linux-musl , os: ubuntu-20.04, use-cross: true } steps: - name: Checkout source code uses: actions/checkout@v2