Skip to content

Fixed error handler #36

Fixed error handler

Fixed error handler #36

Workflow file for this run

name: build
on:
workflow_call:
inputs:
build_arch:
required: true
type: string
default: 'x86_64'
pull_request:
paths-ignore:
- "**/*.asciidoc"
- "**/*.md"
- "**/*.png"
push:
# branches:
# - main
paths-ignore:
- "**/*.asciidoc"
- "**/*.md"
- "**/*.png"
workflow_dispatch: ~
permissions:
contents: read
## Concurrency only allowed in the main branch.
## So old builds running for old commits within the same Pull Request are cancelled
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
build-native:
uses: ./.github/workflows/build-native.yml
# setup-build-matrix:
# uses: ./.github/workflows/build-arch-matrix-generator.yml
# with:
# build_arch: ${{ inputs.build_arch }}
build-php-deps:
uses: ./.github/workflows/build-php-deps.yml
test-sources-license:
uses: ./.github/workflows/test-sources-license.yml
build-packages:
needs:
- build-native
- build-php-deps
uses: ./.github/workflows/build-packages.yml
tests-phpt:
needs:
- build-native
uses: ./.github/workflows/test-phpt.yml
# The very last job to report whether the Workflow passed.
# This will act as the Branch Protection gatekeeper
ci:
needs:
- build-native
runs-on: ubuntu-latest
steps:
- name: report
run: echo "CI workflow passed"