Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug Fix: Rocky Linux 8.8-8.10 requires Python 3.11 #50

Merged
merged 2 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 7 additions & 17 deletions .github/workflows/Anchore-Container-Scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,36 +21,26 @@ jobs:
fail-fast: false
matrix:
FROM:
- 'ubuntu:mantic'
- 'ubuntu:noble'
- 'ubuntu:jammy'
- 'ubuntu:focal'
- 'ubuntu:bionic'
- 'linuxmintd/mint22-amd64'
- 'linuxmintd/mint21.3-amd64'
- 'linuxmintd/mint21.2-amd64'
- 'linuxmintd/mint21.1-amd64'
- 'linuxmintd/mint21-amd64'
- 'linuxmintd/mint20-amd64'
- 'debian:bookworm'
- 'debian:bullseye'
#- 'debian:buster' # buster-backports is no longer available from deb.debian.org. Sunsetting?
- 'opensuse/leap:15.6'
- 'opensuse/leap:15.5'
- 'opensuse/leap:15.4'
- 'opensuse/leap:15.3'
- 'opensuse/leap:15.2'
#- 'fedora:41'
- 'fedora:40'
- 'fedora:39'
- 'fedora:38'
- 'fedora:37'
- 'fedora:36'
- 'fedora:35'
- 'fedora:34'
- 'rockylinux:9.3'
- 'rockylinux:9.2'
- 'rockylinux:9.1'
- 'rockylinux:9.0'
- 'rockylinux:8.9'
- 'rockylinux:8.8'
- 'rockylinux:8.7'
- 'rockylinux:8.6'
- 'rockylinux:8.5'
- 'rockylinux/rockylinux:9.4'
- 'manjarolinux/base'
#- 'funtoo/stage3-generic_64'

Expand Down
6 changes: 3 additions & 3 deletions script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -1734,7 +1734,7 @@ function bootstrapOnRockyLinux ()
libpng-devel \
expat-devel \
gtk3-devel \
python3-devel \
python3.11-devel \
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was unable to find out if this is the right version. Rocky doesn't have a package management site as it is based on RHEL. RHEL has one but you apparently need a login.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's what we had for 8.8 originally and I mistakenly took it out. I did get it to compile once I added this back in and removed the other one as it seems cmake will find one and stop there.

Iirc there's a 3.12 too.

rpm-build \
make \
clang
Expand All @@ -1761,7 +1761,7 @@ function bootstrapOnRockyLinux ()
libpng-devel \
expat-devel \
gtk3-devel \
python3-devel \
python3.11-devel \
rpm-build \
make \
clang
Expand All @@ -1788,7 +1788,7 @@ function bootstrapOnRockyLinux ()
libpng-devel \
expat-devel \
gtk3-devel \
python3-devel \
python3.11-devel \
rpm-build \
make \
clang
Expand Down
Loading