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