summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMartin Nordholts <enselic@gmail.com>2021-08-28 14:03:55 +0200
committerMartin Nordholts <enselic@gmail.com>2021-08-29 15:39:25 +0200
commit355a82db542dd66539fc0497aad854cdfa668cbe (patch)
tree8a9aeafcdfcf19035f36cd02caaa660b41aa463e /.github
parentb3e17bde8275ab2fdf70f055029bdbdf55a803f4 (diff)
CICD: Sort build matrix by target
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/CICD.yml22
1 files 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