diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 434df91..8cbace5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Linux Build CI +name: Build CI on: push: @@ -7,7 +7,7 @@ on: branches: [ perl-FCGI-merge ] jobs: - build: + build-linux: runs-on: ubuntu-latest container: ubuntu:24.04 @@ -31,3 +31,27 @@ jobs: - name: perl module - make test working-directory: perl run: make test + build-linux: + runs-on: windows-2022 + + defaults: + run: + shell: bash + + steps: + - uses: actions/checkout@v4 + - name: libfcgi - autogen.sh + run: ./autogen.sh + - name: libfcgi-configure + run: ./configure + - name: libfcgi - make + run: make + - name: perl module - distrib and perl Makefile.PL + working-directory: perl + run: ./distrib && perl Makefile.PL + - name: perl module - make + working-directory: perl + run: make + - name: perl module - make test + working-directory: perl + run: make test