[REBASE & FF] Add Ability To Hide Debugger Monitor Commands #5663
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
| # @file ci-workflow.yml | |
| # | |
| # A workflow that runs basic CI tests and Rust CI tests, triggered on a pull_request or push to | |
| # main. | |
| # | |
| # NOTE: This file is automatically synchronized from Patina DevOps. Update the original file there | |
| # instead of the file in this repo. | |
| # | |
| # - Patina DevOps Repo: https://github.com/OpenDevicePartnership/patina-devops | |
| # - File Sync Settings: https://github.com/OpenDevicePartnership/patina-devops/blob/main/.sync/Files.yml | |
| # | |
| ## | |
| # Copyright (c) Microsoft Corporation. | |
| # SPDX-License-Identifier: Apache-2.0 | |
| ## | |
| name: CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - major | |
| - feature/**/* | |
| pull_request: | |
| branches: | |
| - main | |
| - major | |
| - feature/**/* | |
| # Do not allow more than one instance of this workflow to run at the same | |
| # time for the same PR ref (branch). Prefer head_ref but fall back to ref | |
| # for push events. | |
| # - head_ref example: "branch_name" | |
| # - ref example: "refs/pull/7/merge" | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci_workflow: | |
| name: Run | |
| uses: OpenDevicePartnership/patina-devops/.github/workflows/CiWorkflow.yml@v0.3.9 | |
| with: | |
| build-tasks: build,build-x64,build-aarch64 | |
| run-cargo-vet: false | |
| secrets: inherit | |
| mdbook_docs_test: | |
| name: Run | |
| uses: OpenDevicePartnership/patina-devops/.github/workflows/MdbookWorkflow.yml@v0.3.9 | |
| with: | |
| mdbook-path: "docs" | |
| build-cmd: cargo make build-lib | |
| secrets: inherit |