Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/native-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build MoCA Agent Component in Native Environment

on:
push:
branches: [ main, 'sprint/**', 'release/**', develop ]
pull_request:
branches: [ main, 'sprint/**', 'release/**', topic/RDK*, develop ]

jobs:
build-moca-agent-on-pr:
name: Build moca-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 }}
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,24 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [2.0.0](https://github.com/rdkcentral/moca-agent/compare/1.0.0...2.0.0)
#### [2.1.0](https://github.com/rdkcentral/moca-agent/compare/2.0.0...2.1.0)

- RDKB-62979 RDKB-62980: Native Build for Coverity [`#19`](https://github.com/rdkcentral/moca-agent/pull/19)
- RDKB-62979 RDKB-62980: Native Build for Coverity [`#17`](https://github.com/rdkcentral/moca-agent/pull/17)
- RDKB-62979 RDKB-62980: Native Build for Coverity [`#12`](https://github.com/rdkcentral/moca-agent/pull/12)
- Merge tag '2.0.0' into develop [`906b3bc`](https://github.com/rdkcentral/moca-agent/commit/906b3bc0598abc8b71f97f4969a802e8cffbe7bb)

### [2.0.0](https://github.com/rdkcentral/moca-agent/compare/1.0.0...2.0.0)

> 7 January 2026

- RDKB-61948 RDKB-62265 coverity issues in ccsp-moca [`#11`](https://github.com/rdkcentral/moca-agent/pull/11)
- Update CODEOWNERS [`#9`](https://github.com/rdkcentral/moca-agent/pull/9)
- Deploy fossid_integration_stateless_diffscan_target_repo action [`#8`](https://github.com/rdkcentral/moca-agent/pull/8)
- Update CODEOWNERS [`#6`](https://github.com/rdkcentral/moca-agent/pull/6)
- Deploy cla action [`#7`](https://github.com/rdkcentral/moca-agent/pull/7)
- Update run_ut.sh [`#5`](https://github.com/rdkcentral/moca-agent/pull/5)
- Add changelog for release 2.0.0 [`48328e7`](https://github.com/rdkcentral/moca-agent/commit/48328e771045f2388bd5e2bc8fa1bbf4d6621b86)
- Add execute permission to run_ut.sh [`fee10f7`](https://github.com/rdkcentral/moca-agent/commit/fee10f7cbe02988e4d038fbf020bf8444f9812d5)
- Merge tag '1.0.0' into develop [`6604ea6`](https://github.com/rdkcentral/moca-agent/commit/6604ea65ca3442823e1886420771abcbc9a82c19)

Expand Down
Loading