Skip to content

Commit

Permalink
update rocky build config again
Browse files Browse the repository at this point in the history
  • Loading branch information
adorton-adobe committed Aug 13, 2024
1 parent 6b7c618 commit 1ddd84a
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,18 @@ jobs:
image: ${{ matrix.container }}
strategy:
matrix:
container: ["rockylinux:8", "rockylinux:9"]
include:
- extension_support: 0
- container: "rockylinux:8"
extension_support: 0
variant_tag: "-noext"
- extension_support: 1
- container: "rockylinux:8"
extension_support: 1
variant_tag: ""
- container: "rockylinux:9"
extension_support: 0
variant_tag: "-noext"
- container: "rockylinux:9"
extension_support: 1
variant_tag: ""
steps:
- uses: actions/checkout@v4
Expand All @@ -167,10 +174,10 @@ jobs:
run: yum update -y
- name: Rocky 8 dependencies
if: ${{ matrix.container == 'rockylinux:8' }}
run: yum install -y pkgconfig gcc openssl-devel dbus-glib-devel python3-dbus sqlite-devel libffi-devel wget make findutils
run: yum install -y pkgconfig gcc openssl-devel dbus-glib-devel python3-dbus sqlite-devel libffi-devel wget make findutils glibc-langpack-en
- name: Rocky 9 dependencies
if: ${{ matrix.container == 'rockylinux:9' }}
run: yum install -y pkgconfig gcc openssl-devel dbus-glib-devel python3-dbus sqlite-devel libffi-devel krb5-devel dbus-daemon wget make findutils
run: yum install -y pkgconfig gcc openssl-devel dbus-glib-devel python3-dbus sqlite-devel libffi-devel krb5-devel dbus-daemon wget make findutils glibc-langpack-en
- name: Build Python 3.12
run: |
mkdir tmp && cd tmp
Expand Down

0 comments on commit 1ddd84a

Please sign in to comment.