Skip to content

Commit

Permalink
LLMs smd now...
Browse files Browse the repository at this point in the history
  • Loading branch information
suparious committed Jun 11, 2024
1 parent 7f2c62b commit 2f6c5c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
sed -i "s/ServerOne/localhost/" config.yaml
- name: Install dependencies
run: |
sudo apt update && sudo apt install redis-tools
sudo apt update && sudo apt install -y redis-tools
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Wait for Valkey to be available
env:
VALKEY_HOST: valkey
run: |
for i in {1..10}; do
if redis-cli -h ${VALKEY_HOST} ping; then
if valkey-cli -h ${VALKEY_HOST} ping | grep PONG; then
break
fi
echo "Waiting for Valkey to be available..."
Expand Down

0 comments on commit 2f6c5c2

Please sign in to comment.