From bf364383cf3b7625ecd01b51293a5c39fc884f17 Mon Sep 17 00:00:00 2001 From: Steven Presti Date: Tue, 12 Nov 2024 12:45:24 -0500 Subject: [PATCH] workflows/rust: add gpg package to list of rpms to install With the latest version of fedora, gpg seems to not be installed. Add gpg to the list of rpms to be installed when testing. --- .github/workflows/rust.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 124e82e22..df1c554eb 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -52,7 +52,7 @@ jobs: # Specify additional fields not implied by the job name. key: ${{ matrix.arch }} - name: Install dependencies - run: dnf install -y gcc git-core libzstd-devel openssl-devel cpio diffutils jq xz + run: dnf install -y gcc git-core libzstd-devel openssl-devel cpio diffutils jq xz gpg - name: Configure cargo run: | # Avoid OOM on emulated s390x @@ -109,7 +109,7 @@ jobs: # MSRV changes. key: ${{ matrix.arch }}-${{ env.MSRV }} - name: Install dependencies - run: dnf install -y gcc git-core libzstd-devel openssl-devel cpio diffutils jq xz + run: dnf install -y gcc git-core libzstd-devel openssl-devel cpio diffutils jq xz gpg - name: Configure cargo run: | # Avoid OOM on emulated s390x @@ -160,7 +160,7 @@ jobs: # the lint toolchain changes. key: ${{ matrix.arch }}-${{ env.ACTIONS_LINTS_TOOLCHAIN }} - name: Install dependencies - run: dnf install -y gcc git-core libzstd-devel openssl-devel + run: dnf install -y gcc git-core libzstd-devel openssl-devel gpg - name: Configure cargo run: | # Avoid OOM on emulated s390x @@ -204,7 +204,7 @@ jobs: # Specify additional fields not implied by the job name. key: ${{ matrix.arch }}-${{ matrix.channel }} - name: Install dependencies - run: dnf install -y gcc git-core libzstd-devel openssl-devel cpio diffutils jq xz + run: dnf install -y gcc git-core libzstd-devel openssl-devel cpio diffutils jq xz gpg - name: Configure cargo run: | # Avoid OOM on emulated s390x @@ -240,7 +240,7 @@ jobs: - name: Cache build artifacts uses: Swatinem/rust-cache@v2 - name: Install dependencies - run: dnf install -y gcc git-core libzstd-devel openssl-devel util-linux + run: dnf install -y gcc git-core libzstd-devel openssl-devel util-linux gpg - name: cargo build run: cargo build - name: Help text line length