From: <sv...@op...> - 2024-08-30 09:35:33
|
Author: manx Date: Fri Aug 30 11:35:20 2024 New Revision: 21542 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21542 Log: [Fix] build: CI: GitHub: RHEL: Fix installing dependencies. Modified: trunk/OpenMPT/.github/workflows/RHEL-Autotools.yml trunk/OpenMPT/.github/workflows/RHEL-Makefile.yml Modified: trunk/OpenMPT/.github/workflows/RHEL-Autotools.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/RHEL-Autotools.yml Fri Aug 30 11:08:16 2024 (r21541) +++ trunk/OpenMPT/.github/workflows/RHEL-Autotools.yml Fri Aug 30 11:35:20 2024 (r21542) @@ -43,6 +43,10 @@ run: dnf -y install 'dnf-command(config-manager)' && dnf -y config-manager --set-enabled crb && dnf -y config-manager --set-enabled devel && dnf -y clean all && dnf -y upgrade --refresh - name: Install dependencies run: dnf -y install subversion perl-XML-XPath git gawk zip unzip xz make binutils gcc gcc-c++ clang pkgconf help2man doxygen autoconf autoconf-archive automake libtool zlib-devel mpg123-devel libogg-devel libvorbis-devel pulseaudio-libs-devel SDL2-devel flac-devel libsndfile-devel libtool-ltdl-devel + - name: Enable EPEL + run: dnf -y install epel-release + - name: Install EPEL dependencies + run: dnf -y install ccache portaudio-devel - name: Checkout uses: actions/checkout@v4 - name: fix git Modified: trunk/OpenMPT/.github/workflows/RHEL-Makefile.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/RHEL-Makefile.yml Fri Aug 30 11:08:16 2024 (r21541) +++ trunk/OpenMPT/.github/workflows/RHEL-Makefile.yml Fri Aug 30 11:35:20 2024 (r21542) @@ -51,6 +51,10 @@ run: dnf -y install 'dnf-command(config-manager)' && dnf -y config-manager --set-enabled crb && dnf -y config-manager --set-enabled devel && dnf -y clean all && dnf -y upgrade --refresh - name: Install dependencies run: dnf -y install subversion perl-XML-XPath git gawk zip unzip xz make binutils gcc gcc-c++ clang pkgconf help2man doxygen autoconf autoconf-archive automake libtool zlib-devel mpg123-devel libogg-devel libvorbis-devel pulseaudio-libs-devel SDL2-devel flac-devel libsndfile-devel libtool-ltdl-devel + - name: Enable EPEL + run: dnf -y install epel-release + - name: Install EPEL dependencies + run: dnf -y install ccache portaudio-devel - name: Checkout uses: actions/checkout@v4 - name: fix git |