Skip to content

Ensure no breakage of public API #3246

Ensure no breakage of public API

Ensure no breakage of public API #3246

# *******************************************************************************
# Copyright (c) 2026 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
# Orchestrator: Host Quality Gates
#
# Runs all host-platform quality checks in parallel. Each job is a
# reusable workflow (single source of truth); this workflow only
# arranges execution.
#
# Also callable via workflow_call (used by automated_release).
name: Host
on:
push:
branches: [main]
pull_request:
types: [opened, reopened, synchronize]
merge_group:
types: [checks_requested]
workflow_dispatch:
workflow_call:
concurrency:
group: pr-quality-host-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
build_and_test_host:
name: GCC15
uses: ./.github/workflows/_build_and_test_gcc15.yml
permissions:
contents: read
actions: write
build_and_test_tsan:
name: Thread Sanitizer
uses: ./.github/workflows/_thread_sanitizer.yml
permissions:
contents: read
actions: write
build_and_test_asan_ubsan_lsan:
name: Address & Undefined Behavior Sanitizer
uses: ./.github/workflows/_address_sanitizer.yml
permissions:
contents: read
actions: write
clang-tidy:
name: Clang-Tidy
uses: ./.github/workflows/_clang_tidy.yml
permissions:
contents: read
actions: write