Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kduret committed Jan 29, 2024
1 parent dde8f9a commit aeeff02
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 26 deletions.
3 changes: 3 additions & 0 deletions .github/docker/Dockerfile.packaging-alma8
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ FROM ${REGISTRY_URL}/almalinux:8

RUN bash -e <<EOF

dnf install -y dnf-plugins-core epel-release
dnf config-manager --set-enabled powertools

echo '[goreleaser]
name=GoReleaser
baseurl=https://repo.goreleaser.com/yum/
Expand Down
3 changes: 3 additions & 0 deletions .github/docker/Dockerfile.packaging-alma9
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ FROM ${REGISTRY_URL}/almalinux:9

RUN bash -e <<EOF

dnf install -y dnf-plugins-core epel-release
dnf config-manager --set-enabled crb

echo '[goreleaser]
name=GoReleaser
baseurl=https://repo.goreleaser.com/yum/
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/lua-cffi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,6 @@ jobs:
- name: Install dependencies
run: |
if [ "${{ matrix.package_extension }}" = "rpm" ]; then
dnf install -y dnf-plugins-core epel-release
if [ "${{ matrix.distrib }}" = "el9" ]; then
dnf config-manager --set-enabled crb
else
dnf config-manager --set-enabled powertools
fi
dnf install -y make gcc luarocks meson gcc-c++ cmake libffi libffi-devel
else
apt-get update
Expand Down
11 changes: 1 addition & 10 deletions .github/workflows/lua-curl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,7 @@ jobs:
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Install dependencies
run: |
dnf install -y dnf-plugins-core epel-release
if [ "${{ matrix.distrib }}" = "el9" ]; then
dnf config-manager --set-enabled crb
else
dnf config-manager --set-enabled powertools
fi
dnf install -y make gcc luarocks meson gcc-c++ cmake libcurl-devel
run: dnf install -y make gcc luarocks meson gcc-c++ cmake libcurl-devel
shell: bash

- name: Checkout sources of lua-curl
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/lua-tz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,6 @@ jobs:
- name: Install dependencies
run: |
if [ "${{ matrix.package_extension }}" = "rpm" ]; then
dnf install -y dnf-plugins-core epel-release
if [ "${{ matrix.distrib }}" = "el9" ]; then
dnf config-manager --set-enabled crb
else
dnf config-manager --set-enabled powertools
fi
dnf install -y make gcc luarocks meson gcc-c++ cmake perl
else
apt-get update
Expand Down

0 comments on commit aeeff02

Please sign in to comment.