Skip to content

Commit

Permalink
CI updates
Browse files Browse the repository at this point in the history
- Fix Github CI warnings regarding use of Nodejs 16.
- Add Redis 7.2 to compatibility testing.
- Use latest patch versions of Redis in compatibility testing.
  • Loading branch information
bjosv committed Mar 18, 2024
1 parent 7312881 commit c58eb42
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Run static checkers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run clang-format style check (.c and .h)
uses: jidicula/[email protected]

Expand Down Expand Up @@ -53,10 +53,10 @@ jobs:
cmake -S hiredis-${VERSION} -B hiredis-build -DENABLE_SSL=ON
sudo make -C hiredis-build install
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: ${{ matrix.cmake-version }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Create build folder
run: cmake -E make_directory build
- name: Generate makefiles
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
- name: Prepare
run: |
brew install cmake ninja openssl
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build
run: |
mkdir build && cd build
Expand All @@ -113,7 +113,7 @@ jobs:
name: Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- name: Prepare
run: |
Expand All @@ -129,7 +129,7 @@ jobs:
name: Windows (MinGW64)
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up MinGW
uses: msys2/setup-msys2@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/redis_compability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ jobs:
fail-fast: false
matrix:
include:
- redis-version: 7.0.0
- redis-version: 6.2.7
- redis-version: 6.0.16
- redis-version: 7.2.4
- redis-version: 7.0.15
- redis-version: 6.2.14
- redis-version: 6.0.20
- redis-version: 5.0.14
steps:
- name: Prepare
Expand All @@ -21,7 +22,7 @@ jobs:
packages: libevent-dev
version: 1.0

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create build folder
run: cmake -E make_directory build
Expand Down

0 comments on commit c58eb42

Please sign in to comment.