Skip to content

Commit

Permalink
workflows/rust: add gpg package to list of rpms to install
Browse files Browse the repository at this point in the history
With the latest version of fedora, gpg seems to not be installed.
Add gpg to the list of rpms to be installed when testing.
  • Loading branch information
prestist committed Nov 12, 2024
1 parent ba7aa63 commit bf36438
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit bf36438

Please sign in to comment.