From 5a3afb28cab79de91f682856c9be08c2ccd69791 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Tue, 31 Dec 2024 14:53:21 +0100 Subject: [PATCH] CI: also install attr in one of the CI job to test a cp feature --- .github/workflows/CICD.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index a406b0942..5440ad5d4 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -199,6 +199,11 @@ jobs: # * ensure '.clippy.toml' MSRV configuration setting is equal to ${{ env.RUST_MIN_SRV }} CLIPPY_MSRV=$(grep -P "(?i)^\s*msrv\s*=\s*" .clippy.toml | grep -oP "\d+([.]\d+)+") if [ "${CLIPPY_MSRV}" != "${{ env.RUST_MIN_SRV }}" ]; then { echo "::error file=.clippy.toml::Incorrect MSRV configuration for clippy (found '${CLIPPY_MSRV}'; should be '${{ env.RUST_MIN_SRV }}'); update '.clippy.toml' with 'msrv = \"${{ env.RUST_MIN_SRV }}\"'" ; exit 1 ; } ; fi + - name: Install/setup prerequisites + shell: bash + run: | + # Install a package for one of the tests + sudo apt-get -y update ; sudo apt-get -y install attr - name: Info shell: bash run: |