summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Peter <mail@david-peter.de>2021-10-17 19:37:12 +0200
committerDavid Peter <sharkdp@users.noreply.github.com>2021-10-17 19:45:12 +0200
commit8b60a06ee5badec2759d5d83728e805193bf1b20 (patch)
treee54f873ab742d24be167f58cf9937d20d344bfb6
parent21a5ed2b89c5bbe2c45743ab5d049081bf9f6866 (diff)
Update CI filev1.12.0
-rw-r--r--.github/workflows/CICD.yml27
1 files changed, 13 insertions, 14 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index 7cd7290..7bd2d51 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -37,7 +37,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
- args: --locked --all-targets --all-features
+ args: --locked --all-targets --all-features -- --allow clippy::unknown_clippy_lints
- name: Run tests
uses: actions-rs/cargo@v1
with:
@@ -45,24 +45,23 @@ jobs:
args: --locked
build:
- name: ${{ matrix.job.os }} (${{ matrix.job.target }})
+ name: ${{ matrix.job.target }} (${{ matrix.job.os }})
runs-on: ${{ matrix.job.os }}
strategy:
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-gnu } ## disabled; error: linker `i686-w64-mingw32-gcc` not found
- - { 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