Skip to content

Commit

Permalink
Use openssl 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bjosv committed Sep 23, 2024
1 parent ee0140c commit 4bba48e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,18 @@ jobs:
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install dependencies
run: brew install ninja valkey
run: brew install ninja [email protected]
- name: Install Valkey for non-cluster tests
run: |
git clone --depth 1 --branch 8.0.0 https://github.com/valkey-io/valkey.git
cd valkey && BUILD_TLS=yes OPENSSL_PREFIX=/opt/homebrew/opt/[email protected] make install
- name: Build using CMake
run: |
mkdir build && cd build
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DENABLE_SSL=ON
ninja -v
- name: Build using Makefile
run: USE_SSL=1 make
run: USE_SSL=1 OPENSSL_PREFIX=/opt/homebrew/opt/[email protected] make
- name: Run tests
working-directory: tests
env:
Expand Down

0 comments on commit 4bba48e

Please sign in to comment.