Skip to content

Commit

Permalink
Add apt required package installations
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorHack committed Sep 17, 2024
1 parent 5ee75c4 commit 94dd806
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/run-tokenizer-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,10 @@ jobs:
run: |
ls -la ${GITHUB_WORKSPACE}
# Place sleep step before the test execution to "exec" into the test k8s POD and run tests manually to identify what dependencies are being used.
- name: "Forced sleep_600"
id: forced_sleep_600
run: |
sleep 600
# - name: "Forced sleep_600"
# id: forced_sleep_600
# run: |
# sleep 600

# Place sleep step before the test execution to "exec" into the test k8s POD and run tests manually to identify what dependencies are being used.
- name: "[DEBUG] sleep"
Expand All @@ -77,14 +76,21 @@ jobs:
run: |
sleep ${{ inputs.sleep_time }}
- name: "Installing 'apt' required packages"
id: apt_install
run: |
sudo apt update -y
sudo apt upgrade -y
sudo apt install python3-pip -y
- name: "Installing 'llama-models' dependencies"
id: pip_install
run: |
echo "[STEP] Installing 'llama-models' models"
which pip
which python
pip3 install -U pip setuptools
pip3 install -r requirements.txt
which python3
pip install -U pip setuptools
pip install -r requirements.txt
- name: Set environment variable
id: set_env
Expand Down

0 comments on commit 94dd806

Please sign in to comment.