Skip to content

Commit

Permalink
update github action for building redis-plus-plus
Browse files Browse the repository at this point in the history
  • Loading branch information
sewenew committed Jan 6, 2024
1 parent f670ad5 commit e3562ef
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform.
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml
name: CMake on multiple platforms
name: Build redis-plus-plus

on:
push:
Expand All @@ -13,8 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}

strategy:
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable.
fail-fast: false
fail-fast: true

# Set up a matrix to run the following 3 configurations:
# 1. <Windows, Release, latest MSVC compiler toolchain on the default runner image, default generator>
Expand Down Expand Up @@ -43,7 +40,7 @@ jobs:
- name: redis-dep
run: |
wget -L https://github.com/redis/redis/archive/refs/tags/7.2.3.zip -O redis-7.2.3.zip && unzip redis-7.2.3.zip
cd redis-7.2.3 && make -j2 && ./src/redis-server &>/dev/null && cd ..
cd redis-7.2.3 && make -j2 && ./src/redis-server &>/dev/null & && cd ..
- name: hiredis-dep
run: |
Expand Down

0 comments on commit e3562ef

Please sign in to comment.