2024-06-01 19:02:06 +03:00
|
|
|
name: CI
|
|
|
|
on: [ push, pull_request ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
call-build-ubuntu:
|
|
|
|
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
|
|
|
|
uses: ./.github/workflows/ci-ubuntu.yml
|
|
|
|
|
|
|
|
call-build-fedora:
|
|
|
|
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
|
|
|
|
uses: ./.github/workflows/ci-fedora.yml
|
|
|
|
|
|
|
|
call-build-alpine:
|
|
|
|
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
|
|
|
|
uses: ./.github/workflows/ci-alpine.yml
|
|
|
|
|
|
|
|
call-build-macos:
|
|
|
|
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
|
|
|
|
uses: ./.github/workflows/ci-macos.yml
|
|
|
|
|
|
|
|
call-build-solaris:
|
|
|
|
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
|
|
|
|
uses: ./.github/workflows/ci-solaris.yml
|
|
|
|
|
|
|
|
call-build-freebsd:
|
|
|
|
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
|
|
|
|
uses: ./.github/workflows/ci-freebsd.yml
|
|
|
|
with:
|
|
|
|
# https://github.com/GNUAspell/aspell/pull/651
|
2024-11-03 11:43:29 +03:00
|
|
|
CFLAGS: -Wno-strict-prototypes
|