From 0d592565cd12e09e48d1938cb2efa6a8ae105769 Mon Sep 17 00:00:00 2001 From: Mathieu CARBONNEAUX OSUAGWU Date: Tue, 5 Nov 2024 01:12:22 +0100 Subject: [PATCH] add perl module build and test --- .github/workflows/build.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d1d99b4..4c0c5dc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,11 +14,18 @@ jobs: steps: - uses: actions/checkout@v4 - - name: setup + - name: setup os run: apt-get update && apt-get -y install libfcgi-client-perl autoconf automake libtool make gcc make m4 g++ - - name: autogen.sh + - name: libfcgi: autogen.sh run: ./autogen.sh - - name: configure + - name: libfcgi: configure run: ./configure - - name: make + - name: libfcgi: make + run: make + - name: perl module : distrib and perl Makefile.PL + run: cd perl + run: ./distrib && perl Makefile.PL + - name: perl module : make + run: make + - name: perl module : make test run: make