Skip to content

Commit f84570d

Browse files
RDKB-63002: Native build and Github Action Workflow Changes
Reason for change: Coverity check on native build Test Procedure: Native build successful Risks: Low Priority: P1 Signed-off-by: Abhishek Kumar <abhishek_kumaracee2@comcast.com>
1 parent efe21dc commit f84570d

File tree

8 files changed

+2780
-0
lines changed

8 files changed

+2780
-0
lines changed

.github/workflows/native-build.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build tr069 protocol Agent Component in Native Environment
2+
3+
on:
4+
push:
5+
branches: [ main, 'sprint/**', 'release/**', develop ]
6+
pull_request:
7+
branches: [ main, 'sprint/**', 'release/**', topic/RDK*, develop ]
8+
9+
jobs:
10+
build-tr069-protocol-agent-on-pr:
11+
name: Build tr069-protocol-agent component in github rdkcentral
12+
runs-on: ubuntu-latest
13+
container:
14+
image: ghcr.io/rdkcentral/docker-rdk-ci:latest
15+
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v3
19+
20+
- name: native build
21+
run: |
22+
chmod +x cov_docker_script/setup_dependencies.sh
23+
./cov_docker_script/setup_dependencies.sh
24+
chmod +x cov_docker_script/build_native.sh
25+
./cov_docker_script/build_native.sh
26+
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.RDKCM_RDKE }}

0 commit comments

Comments
 (0)