Skip to content

Commit

Permalink
Move dependency handling for integrations to script. (netdata#19185)
Browse files Browse the repository at this point in the history
This will simplify handling across repositories.
  • Loading branch information
Ferroin authored Dec 11, 2024
1 parent d83b2cc commit 8fa34d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/generate-integrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
sudo apt-get install python3-venv
python3 -m venv ./virtualenv
source ./virtualenv/bin/activate
pip install jsonschema referencing jinja2 ruamel.yaml
./integrations/pip.sh
- name: Generate Integrations
id: generate
run: |
Expand Down
3 changes: 3 additions & 0 deletions integrations/pip.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh

exec pip install jsonschema referencing jinja2 ruamel.yaml

0 comments on commit 8fa34d8

Please sign in to comment.