Skip to content

Compile PHP from source in Ubuntu 22.04 in tests #6

Compile PHP from source in Ubuntu 22.04 in tests

Compile PHP from source in Ubuntu 22.04 in tests #6

Workflow file for this run

name: Build
on:
push:
paths:
- "src/**"
- "t/**"
- "third_party/**"
- ".github/**"
pull_request:
paths:
- "src/**"
- "t/**"
- "third_party/**"
- ".github/**"
# later try to pass it, and not repeat it in workflows
env:
DB_DATABASE: ngx_php
DB_USER: ngx_php
DB_PASSWORD: ngx_php
jobs:
build_20-04:
name: Ubuntu 20.04
if: ${{ !contains(github.event.head_commit.message, '[ci only 22]') }}
uses: ./.github/workflows/ngx_php.yml
build_dynamic_20-04:
name: Ubuntu 20.4 dynamic
if: ${{ !contains(github.event.head_commit.message, '[ci only 22]') }}
uses: ./.github/workflows/ngx_php_dynamic.yml
build_dynamic_22-04:
name: Ubuntu 22.04 dynamic
if: ${{ !contains(github.event.head_commit.message, '[ci only 20]') }}
uses: ./.github/workflows/22.04_dynamic.yml
build_php_22-04:
name: Build PHP Ubuntu 22.04
if: ${{ contains(github.event.head_commit.message, '[compile-php]') }}
uses: ./.github/workflows/22.04_compile_php.yml