Skip to content

Commit

Permalink
redis
Browse files Browse the repository at this point in the history
  • Loading branch information
chayim committed Aug 8, 2023
1 parent 7dbdb88 commit dcfcc4f
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,19 @@ jobs:
with:
fetch-depth: ''

- uses: actions/checkout@v3
# Number of commits to fetch. 0 indicates all history for all branches and tags.
with:
fetch-depth: ''
repository: 'redis/redis'
ref: ${{matrix.redis-version}}
path: redis

- name: Install Redis Server test dependencies
run: |
cd redis/src
make redis-server
- name: Setup Python
uses: actions/setup-python@v4
with:
Expand All @@ -51,13 +64,6 @@ jobs:
python3 -m poetry export --dev --without-hashes -o requirements-${{matrix.platform}}-${{matrix.python}}.txt
python3 -m pip install -r requirements-${{matrix.platform}}-${{matrix.python}}.txt
- name: Install Redis Server test dependencies
run: |
sudo apt update -q && sudo apt install -yqq gcc make
git clone git@github.com:redis/redis -b ${{matrix.redis-version}}
cd redis/src
make redis-server
- name: Generate test certificates
run: |
cd redis
Expand Down

0 comments on commit dcfcc4f

Please sign in to comment.