Skip to content

try windows build

try windows build #10

Workflow file for this run

name: Build CI
on:
push:
branches: [ perl-FCGI-merge ]
pull_request:
branches: [ perl-FCGI-merge ]
jobs:
build-linux:
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 - 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
build-linux:

Check failure on line 34 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 34
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