Skip to content

Commit

Permalink
only enable EPEL on rocky
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeOShannessy committed Dec 26, 2024
1 parent c71c32d commit db34bc6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/smv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ jobs:
run: dnf update -y --refresh
- name: Install basic build prerequisites
run: dnf install -y git gcc g++ rpmdevtools make
- run: dnf install -y epel-release
- name: Enable EPEL
run: |
if [ "${{ matrix.container }}" = "rockylinux:9" ]
then
dnf install -y epel-release
fi
- name: Install lib prerequisites
run: dnf install -y cmake gd-devel freeglut-devel
bash gd freeglut libXmu-devel glew-devel
Expand Down

0 comments on commit db34bc6

Please sign in to comment.