Service discovery vibe redesign #3239
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ******************************************************************************* | |
| # 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: | |
| inputs: | |
| cache-mode: | |
| description: "Cache mode override (empty = auto-compute from event context)." | |
| type: string | |
| default: "" | |
| fetch-only: | |
| description: "When true, runs --nobuild to fetch dependencies only." | |
| type: string | |
| default: "false" | |
| secrets: | |
| UBUNTU_SNAPSHOT_MIRROR_URL: | |
| required: false | |
| 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 | |
| with: | |
| cache-mode: ${{ inputs.cache-mode }} | |
| fetch-only: ${{ inputs.fetch-only }} | |
| permissions: | |
| contents: read | |
| actions: write | |
| secrets: | |
| UBUNTU_SNAPSHOT_MIRROR_URL: ${{ secrets.UBUNTU_SNAPSHOT_MIRROR_URL }} | |
| build_and_test_tsan: | |
| name: Thread Sanitizer | |
| uses: ./.github/workflows/_thread_sanitizer.yml | |
| with: | |
| cache-mode: ${{ inputs.cache-mode }} | |
| fetch-only: ${{ inputs.fetch-only }} | |
| permissions: | |
| contents: read | |
| actions: write | |
| secrets: | |
| UBUNTU_SNAPSHOT_MIRROR_URL: ${{ secrets.UBUNTU_SNAPSHOT_MIRROR_URL }} | |
| build_and_test_asan_ubsan_lsan: | |
| name: Address & Undefined Behavior Sanitizer | |
| uses: ./.github/workflows/_address_sanitizer.yml | |
| with: | |
| cache-mode: ${{ inputs.cache-mode }} | |
| fetch-only: ${{ inputs.fetch-only }} | |
| permissions: | |
| contents: read | |
| actions: write | |
| secrets: | |
| UBUNTU_SNAPSHOT_MIRROR_URL: ${{ secrets.UBUNTU_SNAPSHOT_MIRROR_URL }} | |
| clang-tidy: | |
| name: Clang-Tidy | |
| uses: ./.github/workflows/_clang_tidy.yml | |
| with: | |
| cache-mode: ${{ inputs.cache-mode }} | |
| fetch-only: ${{ inputs.fetch-only }} | |
| permissions: | |
| contents: read | |
| actions: write | |
| secrets: | |
| UBUNTU_SNAPSHOT_MIRROR_URL: ${{ secrets.UBUNTU_SNAPSHOT_MIRROR_URL }} |