-
Notifications
You must be signed in to change notification settings - Fork 77
37 lines (33 loc) · 940 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Linux Build CI
on:
push:
branches: [ perl-FCGI-merge ]
pull_request:
branches: [ perl-FCGI-merge ]
jobs:
build:
runs-on: ubuntu-latest
container: ubuntu:24.04
steps:
- uses: actions/checkout@v4
- name: setup os
run: apt-get update && apt-get -y install libfcgi-client-perl autoconf automake libtool make gcc make m4 g++
- name: libfcgi-setup
run-name: libfcgi\: autogen.sh
run: ./autogen.sh
- name: libfcgi-configure
run-name: libfcgi-configure
run: ./configure
- name: libfcgi: make
run-name: libfcgi: make
run: make
- name: perl-setup-and-configure
run-name: perl module \: distrib and perl Makefile.PL
run: cd perl
run: ./distrib && perl Makefile.PL
- name: perl-make
run-name: perl module \: make
run: make
- name: perl-make-test
run-name: perl module \: make test
run: make test