-
Notifications
You must be signed in to change notification settings - Fork 41
RDKB-63406 :Devicetype RFC default value is not migrating after software upgrade #203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
7735aa6
f963d29
693253a
bbf01eb
70197ac
f77a2b3
19727fa
499ec83
89ef796
6f73d2f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -19,9 +19,15 @@ jobs: | |||||||||
|
|
||||||||||
| - 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 | ||||||||||
| # Trust the workspace | ||||||||||
| git config --global --add safe.directory '*' | ||||||||||
| # Pull the latest changes for the native build system | ||||||||||
| git submodule update --init --recursive --remote | ||||||||||
|
Comment on lines
+24
to
+25
|
||||||||||
| # Pull the latest changes for the native build system | |
| git submodule update --init --recursive --remote | |
| # Sync submodules to the commits recorded in this repository | |
| git submodule update --init --recursive |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| [submodule "build_tools_workflows"] | ||
| path = build_tools_workflows | ||
| url = https://github.com/rdkcentral/build_tools_workflows | ||
| branch = develop |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Setting
safe.directoryto*disables Git's safety checks globally for all directories in the runner, which is broader than necessary. Restrict this to just the checked-out workspace (e.g.,${{ github.workspace }}) and avoid using--remotefor submodules unless you explicitly want non-pinned builds.