Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .github/workflows/native-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,14 @@ jobs:
run: |
# Trust the workspace
git config --global --add safe.directory '*'

# Pull the latest changes for the native build system
git submodule update --init --recursive --remote

# Build and install dependencies
chmod +x cov_docker_script/build_dependencies.sh
./cov_docker_script/build_dependencies.sh

# Build component
chmod +x build_tools_workflows/cov_docker_script/build_native.sh
./build_tools_workflows/cov_docker_script/build_native.sh ./cov_docker_script/component_config.json "$(pwd)"
Expand Down
9 changes: 0 additions & 9 deletions cov_docker_script/component_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,6 @@
},
"native_component": {
"name": "webcfg",
"pre_build_commands": [
{
"command": "chmod +x cov_docker_script/build_dependencies.sh"
},
{
"description": "Check Cmake version",
"command": "./cov_docker_script/build_dependencies.sh"
}
],
"build": {
"type": "cmake",
"build_dir": "build",
Expand Down
Loading