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
8 changes: 5 additions & 3 deletions .github/workflows/_run-one-click.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ jobs:
with:
fetch-depth: 0

- name: Install dependencies
run: |
sudo apt update
sudo apt install -y python3-pip

- name: get-default-params-from-config
id: get-default-params
if: ${{ inputs.deploy_method == 'k8s' }}
Expand Down Expand Up @@ -131,9 +136,6 @@ jobs:
Mount_dir: ${{ env.Mount_dir }}
LVM_model: ${{ env.LVM_model }}
run: |
sudo apt update
sudo apt install -y python3-pip

cd ${{ github.workspace }}/one_click_deploy
python3 -m pip install -r requirements.txt

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/weekly-one-click-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
nodes: ${{ steps.get-matrix.outputs.nodes }}
deploy_methods: ${{ steps.get-matrix.outputs.deploy_methods }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Create Matrix
id: get-matrix
run: |
Expand Down