From ad95fd46c2abba58aedadedec6aa3bc5bd461390 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Mon, 6 Jul 2020 15:24:40 -0400 Subject: [PATCH] Install all core modules on CentOS/RHEL/Fedora CentOS and RHEL have a `perl-core` metapackage that depends on all packages providing core modules. Fedora's `perl` package is equivalent to the CentOS/RHEL `perl-core` package, and its `perl-interpreter` package is equivalent to the CentOS/RHEL `perl` package. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a110f52..f2ab9c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: install dependencies - run: yum install -y automake perl-Test-Simple + run: yum install -y automake perl-core - name: autogen run: ./autogen - name: configure @@ -73,7 +73,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: install dependencies - run: dnf --enablerepo=PowerTools install -y perl-version automake make perl-Test-Warnings + run: dnf --enablerepo=PowerTools install -y automake make perl-Test-Warnings perl-core - name: autogen run: ./autogen - name: configure @@ -89,7 +89,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: install dependencies - run: dnf install -y automake findutils make perl-Test-Warnings perl-version + run: dnf install -y automake findutils make perl perl-Test-Warnings - name: autogen run: ./autogen - name: configure @@ -107,7 +107,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: install dependencies - run: yum install -y perl-version automake make perl-Test-Simple + run: yum install -y automake make perl-core - name: autogen run: ./autogen - name: configure