fix no answer package install #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
run: apt-get update && apt-get -y install libfcgi-client-perl autoconf automake libtool make gcc make m4 g++ | |
- name: autogen.sh | |
run: ./autogen.sh | |
- name: configure | |
run: ./configure | |
- name: make | |
run: make |