From f11fef5c50f29165420788d2d459adf99b45fc07 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Mon, 6 Jul 2020 16:09:29 -0400 Subject: [PATCH] Install modules for testing on CentOS/RHEL/Fedora --- .github/workflows/ci.yml | 41 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 37 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df397c6..ca6d200 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,13 @@ jobs: steps: - uses: actions/checkout@v1 - name: install dependencies - run: yum install -y automake perl-core + run: | + yum install -y \ + automake \ + perl-IO-Socket-INET6 \ + perl-core \ + perl-libwww-perl \ + ; - name: autogen run: ./autogen - name: configure @@ -73,7 +79,15 @@ jobs: steps: - uses: actions/checkout@v2 - name: install dependencies - run: dnf --refresh --enablerepo=PowerTools install -y automake make perl-Test-Warnings perl-core + run: | + dnf --refresh --enablerepo=PowerTools install -y \ + automake \ + make \ + perl-HTTP-Daemon \ + perl-IO-Socket-INET6 \ + perl-Test-Warnings \ + perl-core \ + ; - name: autogen run: ./autogen - name: configure @@ -89,7 +103,19 @@ jobs: steps: - uses: actions/checkout@v2 - name: install dependencies - run: dnf --refresh install -y automake findutils make perl perl-Test-Warnings + run: | + dnf --refresh install -y \ + automake \ + findutils \ + make \ + perl \ + perl-HTTP-Daemon \ + perl-HTTP-Daemon-SSL \ + perl-IO-Socket-INET6 \ + perl-Plack \ + perl-Test-TCP \ + perl-Test-Warnings \ + ; - name: autogen run: ./autogen - name: configure @@ -107,7 +133,14 @@ jobs: steps: - uses: actions/checkout@v2 - name: install dependencies - run: yum install -y automake make perl-core + run: | + yum install -y \ + automake \ + make \ + perl-HTTP-Daemon \ + perl-IO-Socket-INET6 \ + perl-core \ + ; - name: autogen run: ./autogen - name: configure