Add a system test for Rocky Linux 10 (#16191)

This commit is contained in:
Zanie Blue 2025-10-08 12:24:10 -05:00 committed by GitHub
parent 9cec60bcc4
commit 3c30e11a4d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 2 deletions

View File

@ -2188,11 +2188,11 @@ jobs:
needs: build-binary-linux-musl needs: build-binary-linux-musl
name: "check system | python on rocky linux ${{ matrix.rocky-version }}" name: "check system | python on rocky linux ${{ matrix.rocky-version }}"
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: rockylinux:${{ matrix.rocky-version }} container: rockylinux/rockylinux:${{ matrix.rocky-version }}
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
rocky-version: ["8", "9"] rocky-version: ["8", "9", "10"]
steps: steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with: with:
@ -2208,6 +2208,11 @@ jobs:
run: | run: |
dnf install python3.9 python3.9-pip which -y dnf install python3.9 python3.9-pip which -y
- name: "Install Python"
if: matrix.rocky-version == '10'
run: |
dnf install python3 python3-pip which -y
- name: "Download binary" - name: "Download binary"
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
with: with: