[DLSPS] PR workflow (by @hteeyeoh via push) #10
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
| name: "[DLSPS] PR workflow" | |
| run-name: "[DLSPS] PR workflow (by @${{ github.actor }} via ${{ github.event_name }})" | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| paths: | |
| - 'libraries/dl-streamer/*' | |
| - 'libraries/dl-streamer/cmake/**' | |
| - 'libraries/dl-streamer/docker/**' | |
| - 'libraries/dl-streamer/include/**' | |
| - 'libraries/dl-streamer/python/**' | |
| - 'libraries/dl-streamer/samples/**' | |
| - 'libraries/dl-streamer/scripts/**' | |
| - 'libraries/dl-streamer/src/**' | |
| - 'libraries/dl-streamer/tests/**' | |
| - 'libraries/dl-streamer/thirdparty/**' | |
| - 'microservices/dlstreamer-pipeline-server/**' | |
| pull_request: | |
| paths: | |
| - 'libraries/dl-streamer/*' | |
| - 'libraries/dl-streamer/cmake/**' | |
| - 'libraries/dl-streamer/docker/**' | |
| - 'libraries/dl-streamer/include/**' | |
| - 'libraries/dl-streamer/python/**' | |
| - 'libraries/dl-streamer/samples/**' | |
| - 'libraries/dl-streamer/scripts/**' | |
| - 'libraries/dl-streamer/src/**' | |
| - 'libraries/dl-streamer/tests/**' | |
| - 'libraries/dl-streamer/thirdparty/**' | |
| - 'microservices/dlstreamer-pipeline-server/**' | |
| workflow_call: | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| # ----------------------------------------------------- SCANs ----------------------------------------------------- | |
| dlsps-coverity: | |
| permissions: | |
| contents: read | |
| packages: write | |
| name: "DLSPS SCAN: static C/C++ code analysis" | |
| uses: ./.github/workflows/dlsps_coverity.yaml | |
| secrets: | |
| DLSPS_COVERITY_TOKEN: ${{ secrets.DLSPS_COVERITY_TOKEN }} | |
| DLSPS_COVERITY_EMAIL: ${{ secrets.DLSPS_COVERITY_EMAIL }} | |
| DLSPS_COVERITY_PROJECT: ${{ secrets.DLSPS_COVERITY_PROJECT }} | |
| # ------------------------------------------------ BUILDS & TESTS ------------------------------------------------- | |
| dlsps-sanity-test: | |
| permissions: | |
| contents: read | |
| packages: write | |
| name: "DLSPS TEST: sanity tests" | |
| uses: ./.github/workflows/dlsps_sanity_test.yaml | |
| dlsps-build-scans-tests: | |
| permissions: | |
| contents: read | |
| packages: write | |
| pull-requests: write | |
| name: "DLSPS BUILD & SCAN & TEST" | |
| uses: ./.github/workflows/dlsps-build-scans-pr-workflow.yaml |