Skip to content

Commit

Permalink
add perl module build and test
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarbonneaux committed Nov 5, 2024
1 parent 9f5789a commit 0d59256
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0d59256

Please sign in to comment.