Skip to content

Commit 1063687

Browse files
authored
Remove redis from macos CI workflow (#744)
We should use the redis within the payjoin-test-utils and not install redis seperately. I think the issue cropped up parallel to the fact that macos worker does not natively have access to docker so I was having trouble getting those both solved at the same time but as it turns out we can simply remove the redis dep directly from the CI workflow without any additional changes!
2 parents ac66657 + 9b8eeaf commit 1063687

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

.github/workflows/python.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -90,23 +90,6 @@ jobs:
9090
- name: Setup Docker on macOS
9191
uses: douglascamata/[email protected]
9292

93-
- name: "Install Redis"
94-
run: |
95-
brew update
96-
brew install redis
97-
98-
- name: "Start Redis"
99-
run: |
100-
redis-server --daemonize yes
101-
for i in {1..10}; do
102-
if redis-cli ping | grep -q PONG; then
103-
echo "Redis is ready"
104-
break
105-
fi
106-
echo "Waiting for Redis..."
107-
sleep 1
108-
done
109-
11093
- name: "Use cache"
11194
uses: Swatinem/rust-cache@v2
11295

0 commit comments

Comments
 (0)