RDKB-62988 [GitHub Coverity] Enable Coverity Scan for cable-modem-agent using Native Build Integration #8
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: Build Cable Modem Agent Component in Native Environment | |
| on: | |
| push: | |
| branches: [ main, 'sprint/**', 'release/**', develop ] | |
| pull_request: | |
| branches: [ main, 'sprint/**', 'release/**', topic/RDK*, develop ] | |
| jobs: | |
| build-cable-modem-agent-on-pr: | |
| name: Build Cable Modem Agent component in github rdkcentral | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/rdkcentral/docker-rdk-ci:latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: native build | |
| run: | | |
| chmod +x cov_docker_script/run_setup_dependencies.sh | |
| ./cov_docker_script/run_setup_dependencies.sh | |
| chmod +x cov_docker_script/run_native_build.sh | |
| ./cov_docker_script/run_native_build.sh | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.RDKCM_RDKE }} |