We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0c6c55 commit 659b248Copy full SHA for 659b248
.github/workflows/ci.yml
@@ -40,15 +40,21 @@ jobs:
40
path: /home/runner/work/memtier_benchmark/memtier_benchmark/redis
41
key: ${{ runner.os }}-redis
42
43
- - name: Install Redis Server test dependencies
+ - name: Check out Redis
44
+ if: steps.cache-redis.outputs.cache-hit != 'true'
45
+ uses: actions/checkout@v3
46
+ with:
47
+ repository: 'redis/redis'
48
+ ref: 'unstable'
49
+ path: 'redis'
50
+
51
+ - name: Build and run Redis
52
if: steps.cache-redis.outputs.cache-hit != 'true'
53
run: |
- git clone git://github.com/antirez/redis.git --branch unstable
54
cd redis
55
make BUILD_TLS=yes
56
./utils/gen-test-certs.sh
57
./src/redis-server --version
- cd ..
58
59
- name: Test OSS TCP
60
0 commit comments