Skip to content

Commit

Permalink
try windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarbonneaux committed Nov 5, 2024
1 parent f3fe46a commit bf8231d
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Linux Build CI
name: Build CI

on:
push:
Expand All @@ -7,7 +7,7 @@ on:
branches: [ perl-FCGI-merge ]

jobs:
build:
build-linux:

runs-on: ubuntu-latest
container: ubuntu:24.04
Expand All @@ -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

0 comments on commit bf8231d

Please sign in to comment.