Fix static analysis warning in Posix ConditionVariable.cpp #3961
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
| # Builds and runs UTs on https://github.com/fprime-community/fprime-tutorial-hello-world | ||
| name: "External Repo: Tutorial: HelloWorld" | ||
| on: | ||
| push: | ||
| branches: [ devel, release/** ] | ||
| pull_request: | ||
| # The branches below must be a subset of the branches above | ||
| branches: [ devel, release/** ] | ||
| paths-ignore: | ||
| - 'docs/**' | ||
| - '**.md' | ||
| - '.github/actions/spelling/**' | ||
| - '.github/ISSUE_TEMPLATE/**' | ||
| # Cancel in-progress runs if a newer run is started on a given PR | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
| cancel-in-progress: ${{ !contains(github.ref, 'devel') && !contains(github.ref, 'release/')}} | ||
| jobs: | ||
| get-branch: | ||
| name: "Get target branch" | ||
| uses: ./.github/workflows/reusable-get-pr-branch.yml | ||
| with: | ||
| target_repository: fprime-community/fprime-tutorial-hello-world | ||
| run: | ||
| needs: get-branch | ||
| name: "" | ||
| uses: ./.github/workflows/reusable-project-builder.yml | ||
|
Check failure on line 31 in .github/workflows/ext-build-hello-world.yml
|
||
| with: | ||
| target_repository: fprime-community/fprime-tutorial-hello-world | ||
| fprime_location: ./lib/fprime | ||
| build_location: HiNamespace/FirstDeployment | ||
| run_unit_tests: false # no UTs in HelloWorld project | ||
| target_ref: ${{ needs.get-branch.outputs.target-branch }} | ||