forked from opensearch-project/OpenSearch-Dashboards
-
Notifications
You must be signed in to change notification settings - Fork 88
Add ML commons plugin to package builder #875
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
Open
asteriscos
wants to merge
8
commits into
4.14.0
Choose a base branch
from
enhancement/871-add-ml-commons-plugin-to-package-builder
base: 4.14.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
6f865a2
Add ML commons to package builder
asteriscos b4b70ad
Add ML commons to dev tools
asteriscos e7c6a6a
Set dev branch as reference for testing
Tostti 5d11722
Rename ML Commons plugin package to match the correct name
Tostti 0aa0fa6
Update artifact name
Tostti a21a192
Fix minor typos
Tostti b63a167
Fix typo params on build-packages
gonzaarancibia a2cdb6d
Merge branch '4.14.0' into enhancement/871-add-ml-commons-plugin-to-p…
gonzaarancibia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,11 @@ on: | |
description: 'Branch/tag/commit of the wazuh-dashboard-plugins repository to build the main plugins' | ||
required: true | ||
default: '4.14.0' | ||
reference_ml_commons_plugin: | ||
type: string | ||
description: 'Branch/tag/commit of the wazuh-dashboard-ml-commons repository to build the ML Commons plugin' | ||
required: true | ||
default: '4.14.0' | ||
is_stage: | ||
type: boolean | ||
description: 'Set production nomenclature' | ||
|
@@ -92,6 +97,10 @@ on: | |
type: string | ||
required: true | ||
default: '4.14.0' | ||
reference_ml_commons_plugin: | ||
type: string | ||
required: true | ||
default: '4.14.0' | ||
is_stage: | ||
type: boolean | ||
required: true | ||
|
@@ -120,8 +129,10 @@ jobs: | |
COMMIT_SHA: ${{ steps.setup-variables.outputs.COMMIT_SHA }} | ||
PLUGINS_SHA: ${{ steps.setup-variables.outputs.PLUGINS_SHA }} | ||
SECURITY_SHA: ${{ steps.setup-variables.outputs.SECURITY_SHA }} | ||
ML_COMMONS_SHA: ${{ steps.setup-variables.outputs.ML_COMMONS_SHA }} | ||
PRODUCTION: ${{ steps.setup-variables.outputs.PRODUCTION }} | ||
WAZUH_DASHBOARD_SLIM: ${{ steps.setup-variables.outputs.WAZUH_DASHBOARD_SLIM }} | ||
WAZUH_ML_COMMONS_PLUGIN: ${{ steps.setup-variables.outputs.WAZUH_ML_COMMONS_PLUGIN }} | ||
WAZUH_SECURITY_PLUGIN: ${{ steps.setup-variables.outputs.WAZUH_SECURITY_PLUGIN }} | ||
WAZUH_PLUGINS_WAZUH: ${{ steps.setup-variables.outputs.WAZUH_PLUGINS_WAZUH }} | ||
WAZUH_PLUGINS_CORE: ${{ steps.setup-variables.outputs.WAZUH_PLUGINS_CORE }} | ||
|
@@ -150,6 +161,12 @@ jobs: | |
git clone -b ${{ inputs.reference_security_plugins }} --single-branch https://github.com/wazuh/wazuh-security-dashboards-plugin.git wzsp | ||
cd wzsp | ||
echo "WAZUH_SECURITY_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
- name: Get SHA of wazuh-dashboard-ml-commons | ||
id: get-ml-commons-sha | ||
run: | | ||
git clone -b ${{ inputs.reference_ml_commons_plugin }} --single-branch https://github.com/wazuh/wazuh-dashboard-ml-commons.git wzml | ||
cd wzml | ||
echo "ML_COMMONS_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
|
||
- name: Setup variables | ||
id: setup-variables | ||
|
@@ -175,13 +192,15 @@ jobs: | |
COMMIT_SHA=$(git rev-parse --short HEAD) | ||
PLUGINS_SHA=${{steps.get-plugins-sha.outputs.WAZUH_PLUGINS_SHA}} | ||
SECURITY_SHA=${{steps.get-security-sha.outputs.WAZUH_SECURITY_SHA}} | ||
ML_COMMONS_SHA=${{steps.get-ml-commons-sha.outputs.ML_COMMONS_SHA}} | ||
if [ "${{ inputs.is_stage }}" = "true" ]; then | ||
PRODUCTION=--production | ||
else | ||
PRODUCTION="" | ||
fi | ||
WAZUH_DASHBOARD_SLIM=wazuh-dashboard_${VERSION}-${REVISION}_${{ (inputs.ARCHITECTURE == 'x86_64' || inputs.ARCHITECTURE == 'amd64') && 'x64' || 'arm64' }}.tar.gz | ||
WAZUH_SECURITY_PLUGIN=wazuh-security-dashboards-plugin_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_security_plugins }} | sed 's/\//-/g').zip | ||
WAZUH_ML_COMMONS_PLUGIN=wazuh-ml-commons-plugin_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_ml_commons_plugin }} | sed 's/\//-/g').zip | ||
WAZUH_PLUGINS_WAZUH=wazuh-dashboard-plugins_wazuh_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_wazuh_plugins }} | sed 's/\//-/g').zip | ||
WAZUH_PLUGINS_CORE=wazuh-dashboard-plugins_wazuh-core_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_wazuh_plugins }} | sed 's/\//-/g').zip | ||
WAZUH_PLUGINS_CHECK_UPDATES=wazuh-dashboard-plugins_wazuh-check-updates_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_wazuh_plugins }} | sed 's/\//-/g').zip | ||
|
@@ -210,8 +229,10 @@ jobs: | |
echo "COMMIT_SHA=$COMMIT_SHA" >> $GITHUB_OUTPUT | ||
echo "PLUGINS_SHA=$PLUGINS_SHA" >> $GITHUB_OUTPUT | ||
echo "SECURITY_SHA=$SECURITY_SHA" >> $GITHUB_OUTPUT | ||
echo "ML_COMMONS_SHA=$ML_COMMONS_SHA" >> $GITHUB_OUTPUT | ||
echo "PRODUCTION=$PRODUCTION" >> $GITHUB_OUTPUT | ||
echo "WAZUH_DASHBOARD_SLIM=$WAZUH_DASHBOARD_SLIM" >> $GITHUB_OUTPUT | ||
echo "WAZUH_ML_COMMONS_PLUGIN=$WAZUH_ML_COMMONS_PLUGIN" >> $GITHUB_OUTPUT | ||
echo "WAZUH_SECURITY_PLUGIN=$WAZUH_SECURITY_PLUGIN" >> $GITHUB_OUTPUT | ||
echo "WAZUH_PLUGINS_WAZUH=$WAZUH_PLUGINS_WAZUH" >> $GITHUB_OUTPUT | ||
echo "WAZUH_PLUGINS_CORE=$WAZUH_PLUGINS_CORE" >> $GITHUB_OUTPUT | ||
|
@@ -268,8 +289,17 @@ jobs: | |
with: | ||
reference: ${{ inputs.reference_security_plugins }} | ||
|
||
build-ml-commons-plugin: | ||
needs: [validate-job] | ||
name: Build ML Commons plugin | ||
permissions: | ||
pull-requests: write | ||
uses: wazuh/wazuh-dashboard-ml-commons/.github/workflows/[email protected] | ||
with: | ||
reference: ${{ inputs.reference_ml_commons_plugin }} | ||
|
||
build-package: | ||
needs: [setup-variables, build-main-plugins, build-base, build-security-plugin] | ||
needs: [setup-variables, build-main-plugins, build-base, build-security-plugin, build-ml-commons-plugin] | ||
runs-on: ${{ (inputs.architecture == 'arm64' || inputs.architecture == 'aarch64') && 'wz-linux-arm64' || 'ubuntu-22.04' }} | ||
name: Generate packages | ||
steps: | ||
|
@@ -293,6 +323,11 @@ jobs: | |
with: | ||
name: ${{ needs.setup-variables.outputs.WAZUH_SECURITY_PLUGIN }} | ||
path: ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/security-plugin | ||
- name: Download ml commons plugin artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: ${{ needs.setup-variables.outputs.WAZUH_ML_COMMONS_PLUGIN }} | ||
path: ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/ml-commons-plugin | ||
|
||
- name: Download main plugin's artifact | ||
uses: actions/download-artifact@v4 | ||
|
@@ -314,6 +349,7 @@ jobs: | |
run: | | ||
zip -r -j ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/wazuh-package.zip ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/plugins | ||
zip -r -j ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/security-package.zip ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/security-plugin | ||
zip -r -j ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/ml-commons-package.zip ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/ml-commons-plugin | ||
zip -r -j ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/dashboard-package.zip ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/dashboard/${{ needs.setup-variables.outputs.WAZUH_DASHBOARD_SLIM }} | ||
|
||
- name: Build package | ||
|
@@ -323,8 +359,9 @@ jobs: | |
-r ${{ inputs.revision }} ${{ needs.setup-variables.outputs.ARCHITECTURE_FLAG }} \ | ||
-a file://${{needs.setup-variables.outputs.CURRENT_DIR}}/artifacts/wazuh-package.zip \ | ||
-s file://${{needs.setup-variables.outputs.CURRENT_DIR}}/artifacts/security-package.zip \ | ||
-ml file://${{needs.setup-variables.outputs.CURRENT_DIR}}/artifacts/ml-commons-package.zip \ | ||
-b file://${{needs.setup-variables.outputs.CURRENT_DIR}}/artifacts/dashboard-package.zip \ | ||
--commit-sha ${{needs.setup-variables.outputs.COMMIT_SHA}}-${{needs.setup-variables.outputs.PLUGINS_SHA}}-${{needs.setup-variables.outputs.SECURITY_SHA}} \ | ||
--commit-sha ${{needs.setup-variables.outputs.COMMIT_SHA}}-${{needs.setup-variables.outputs.PLUGINS_SHA}}-${{needs.setup-variables.outputs.SECURITY_SHA}}-${{needs.setup-variables.outputs.ML_COMMONS_SHA}} \ | ||
--${{ inputs.system }} ${{ needs.setup-variables.outputs.PRODUCTION }} --debug | ||
|
||
- name: Upload artifact | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,11 @@ on: | |
type: string | ||
description: 'Branch/tag/commit of the wazuh-dashboard-plugins repository to build the main plugins' | ||
required: true | ||
default: '4.14.0' | ||
reference_ml_commons_plugin: | ||
type: string | ||
description: 'Branch/tag/commit of the wazuh-dashboard-ml-commons repository to build the ML Commons plugin' | ||
required: true | ||
default: 'main' | ||
is_stage: | ||
type: boolean | ||
|
@@ -74,6 +79,10 @@ on: | |
type: string | ||
required: true | ||
default: 'main' | ||
reference_ml_commons_plugin: | ||
type: string | ||
required: true | ||
default: '4.14.0' | ||
Tostti marked this conversation as resolved.
Show resolved
Hide resolved
|
||
is_stage: | ||
type: boolean | ||
required: true | ||
|
@@ -102,8 +111,10 @@ jobs: | |
COMMIT_SHA: ${{ steps.setup-variables.outputs.COMMIT_SHA }} | ||
PLUGINS_SHA: ${{ steps.setup-variables.outputs.PLUGINS_SHA }} | ||
SECURITY_SHA: ${{ steps.setup-variables.outputs.SECURITY_SHA }} | ||
ML_COMMONS_SHA: ${{ steps.setup-variables.outputs.ML_COMMONS_SHA }} | ||
PRODUCTION: ${{ steps.setup-variables.outputs.PRODUCTION }} | ||
WAZUH_DASHBOARD_SLIM: ${{ steps.setup-variables.outputs.WAZUH_DASHBOARD_SLIM }} | ||
WAZUH_ML_COMMONS_PLUGIN: ${{ steps.setup-variables.outputs.WAZUH_ML_COMMONS_PLUGIN }} | ||
WAZUH_SECURITY_PLUGIN: ${{ steps.setup-variables.outputs.WAZUH_SECURITY_PLUGIN }} | ||
WAZUH_PLUGINS_WAZUH: ${{ steps.setup-variables.outputs.WAZUH_PLUGINS_WAZUH }} | ||
WAZUH_PLUGINS_CORE: ${{ steps.setup-variables.outputs.WAZUH_PLUGINS_CORE }} | ||
|
@@ -132,6 +143,12 @@ jobs: | |
git clone -b ${{ inputs.reference_security_plugins }} --single-branch https://github.com/wazuh/wazuh-security-dashboards-plugin.git wzsp | ||
cd wzsp | ||
echo "WAZUH_SECURITY_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
- name: Get SHA of wazuh-dashboard-ml-commons | ||
id: get-ml-commons-sha | ||
run: | | ||
git clone -b ${{ inputs.reference_ml_commons_plugin }} --single-branch https://github.com/wazuh/wazuh-dashboard-ml-commons.git wzml | ||
cd wzml | ||
echo "ML_COMMONS_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
|
||
- name: Setup variables | ||
id: setup-variables | ||
|
@@ -157,13 +174,15 @@ jobs: | |
COMMIT_SHA=$(git rev-parse --short HEAD) | ||
PLUGINS_SHA=${{steps.get-plugins-sha.outputs.WAZUH_PLUGINS_SHA}} | ||
SECURITY_SHA=${{steps.get-security-sha.outputs.WAZUH_SECURITY_SHA}} | ||
ML_COMMONS_SHA=${{steps.get-ml-commons-sha.outputs.ML_COMMONS_SHA}} | ||
if [ "${{ inputs.is_stage }}" = "true" ]; then | ||
PRODUCTION=--production | ||
else | ||
PRODUCTION="" | ||
fi | ||
WAZUH_DASHBOARD_SLIM=wazuh-dashboard_${VERSION}-${REVISION}_${{ (inputs.ARCHITECTURE == 'x86_64' || inputs.ARCHITECTURE == 'amd64') && 'x64' || 'arm64' }}.tar.gz | ||
WAZUH_SECURITY_PLUGIN=wazuh-security-dashboards-plugin_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_security_plugins }} | sed 's/\//-/g').zip | ||
WAZUH_ML_COMMONS_PLUGIN=wazuh-ml-commons-plugin_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_ml_commons_plugin }} | sed 's/\//-/g').zip | ||
WAZUH_PLUGINS_WAZUH=wazuh-dashboard-plugins_wazuh_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_wazuh_plugins }} | sed 's/\//-/g').zip | ||
WAZUH_PLUGINS_CORE=wazuh-dashboard-plugins_wazuh-core_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_wazuh_plugins }} | sed 's/\//-/g').zip | ||
WAZUH_PLUGINS_CHECK_UPDATES=wazuh-dashboard-plugins_wazuh-check-updates_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_wazuh_plugins }} | sed 's/\//-/g').zip | ||
|
@@ -192,8 +211,10 @@ jobs: | |
echo "COMMIT_SHA=$COMMIT_SHA" >> $GITHUB_OUTPUT | ||
echo "PLUGINS_SHA=$PLUGINS_SHA" >> $GITHUB_OUTPUT | ||
echo "SECURITY_SHA=$SECURITY_SHA" >> $GITHUB_OUTPUT | ||
echo "ML_COMMONS_SHA=$ML_COMMONS_SHA" >> $GITHUB_OUTPUT | ||
echo "PRODUCTION=$PRODUCTION" >> $GITHUB_OUTPUT | ||
echo "WAZUH_DASHBOARD_SLIM=$WAZUH_DASHBOARD_SLIM" >> $GITHUB_OUTPUT | ||
echo "WAZUH_ML_COMMONS_PLUGIN=$WAZUH_ML_COMMONS_PLUGIN" >> $GITHUB_OUTPUT | ||
echo "WAZUH_SECURITY_PLUGIN=$WAZUH_SECURITY_PLUGIN" >> $GITHUB_OUTPUT | ||
echo "WAZUH_PLUGINS_WAZUH=$WAZUH_PLUGINS_WAZUH" >> $GITHUB_OUTPUT | ||
echo "WAZUH_PLUGINS_CORE=$WAZUH_PLUGINS_CORE" >> $GITHUB_OUTPUT | ||
|
@@ -250,8 +271,17 @@ jobs: | |
with: | ||
reference: ${{ inputs.reference_security_plugins }} | ||
|
||
build-ml-commons-plugin: | ||
needs: [validate-job] | ||
name: Build ML Commons plugin | ||
permissions: | ||
pull-requests: write | ||
uses: wazuh/wazuh-dashboard-ml-commons/.github/workflows/[email protected] | ||
with: | ||
reference: ${{ inputs.reference_ml_commons_plugin }} | ||
|
||
build-package: | ||
needs: [setup-variables, build-main-plugins, build-base, build-security-plugin] | ||
needs: [setup-variables, build-main-plugins, build-base, build-security-plugin, build-ml-commons-plugin] | ||
runs-on: ${{ (inputs.architecture == 'arm64' || inputs.architecture == 'aarch64') && 'wz-linux-arm64' || 'ubuntu-22.04' }} | ||
name: Generate packages | ||
steps: | ||
|
@@ -275,6 +305,11 @@ jobs: | |
with: | ||
name: ${{ needs.setup-variables.outputs.WAZUH_SECURITY_PLUGIN }} | ||
path: ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/security-plugin | ||
- name: Download ml commons plugin artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: ${{ needs.setup-variables.outputs.WAZUH_ML_COMMONS_PLUGIN }} | ||
path: ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/ml-commons-plugin | ||
|
||
- name: Download main plugin's artifact | ||
uses: actions/download-artifact@v4 | ||
|
@@ -296,6 +331,7 @@ jobs: | |
run: | | ||
zip -r -j ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/wazuh-package.zip ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/plugins | ||
zip -r -j ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/security-package.zip ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/security-plugin | ||
zip -r -j ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/ml-commons-package.zip ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/ml-commons-plugin | ||
zip -r -j ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/dashboard-package.zip ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/dashboard/${{ needs.setup-variables.outputs.WAZUH_DASHBOARD_SLIM }} | ||
|
||
- name: Build package | ||
|
@@ -305,8 +341,9 @@ jobs: | |
-r ${{ inputs.revision }} ${{ needs.setup-variables.outputs.ARCHITECTURE_FLAG }} \ | ||
-a file://${{needs.setup-variables.outputs.CURRENT_DIR}}/artifacts/wazuh-package.zip \ | ||
-s file://${{needs.setup-variables.outputs.CURRENT_DIR}}/artifacts/security-package.zip \ | ||
-ml file://${{needs.setup-variables.outputs.CURRENT_DIR}}/artifacts/ml-commons-package.zip \ | ||
-b file://${{needs.setup-variables.outputs.CURRENT_DIR}}/artifacts/dashboard-package.zip \ | ||
--commit-sha ${{needs.setup-variables.outputs.COMMIT_SHA}}-${{needs.setup-variables.outputs.PLUGINS_SHA}}-${{needs.setup-variables.outputs.SECURITY_SHA}} \ | ||
--commit-sha ${{needs.setup-variables.outputs.COMMIT_SHA}}-${{needs.setup-variables.outputs.PLUGINS_SHA}}-${{needs.setup-variables.outputs.SECURITY_SHA}}-${{needs.setup-variables.outputs.ML_COMMONS_SHA}} \ | ||
--${{ inputs.system }} ${{ needs.setup-variables.outputs.PRODUCTION }} --debug | ||
|
||
- name: Upload artifact | ||
|
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
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
5 changes: 3 additions & 2 deletions
5
dev-tools/build-packages/base-packages-to-base/docker-compose.yml
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
10 changes: 10 additions & 0 deletions
10
...s/build-packages/base-packages-to-base/repositories/plugins/wazuh-dashboard-ml-commons.sh
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Clone the Wazuh ML Commons plugin | ||
cd /home/node/app/plugins | ||
git clone --depth 1 --branch ${WAZUH_DASHBOARD_ML_COMMONS_BRANCH} https://github.com/wazuh/wazuh-dashboard-ml-commons.git | ||
cd wazuh-dashboard-ml-commons | ||
yarn install | ||
echo "Building Wazuh ML Commons plugin" | ||
yarn build | ||
echo "Copying Wazuh ML Commons plugin" | ||
mkdir /home/node/packages/wazuh-ml-commons-plugin | ||
cp -r build/* /home/node/packages/wazuh-ml-commons-plugin |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.